├── .swift-version ├── .spi.yml ├── Sources └── SyntaxSparrow │ ├── SyntaxSparrow.swift │ ├── Public │ ├── SyntaxTree │ │ └── SyntaxTreeError.swift │ └── Protocols │ │ ├── Declaration.swift │ │ └── DeclarationComponent.swift │ ├── Internal │ └── Extensions │ │ └── String+Convenience.swift │ └── Resources │ └── PrivacyInfo.xcprivacy ├── SyntaxSparrow.doccarchive ├── favicon.ico ├── index │ ├── data.mdb │ ├── navigator.index │ └── availability.index ├── developer-og.jpg ├── metadata.json ├── developer-og-twitter.jpg ├── img │ └── deprecated-icon.7bf1740a.svg ├── index.html └── documentation │ └── syntaxsparrow │ ├── index.html │ ├── actor │ ├── index.html │ ├── actors │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── name │ │ └── index.html │ ├── node │ │ └── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── attributes │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── description │ │ └── index.html │ ├── extensions │ │ └── index.html │ ├── functions │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── inheritance │ │ └── index.html │ ├── init(node:) │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isinternal │ │ └── index.html │ ├── isprivate │ │ └── index.html │ ├── ispublic │ │ └── index.html │ ├── keyword │ │ └── index.html │ ├── modifiers │ │ └── index.html │ ├── operators │ │ └── index.html │ ├── protocols │ │ └── index.html │ ├── structures │ │ └── index.html │ ├── subscripts │ │ └── index.html │ ├── typealiases │ │ └── index.html │ ├── variables │ │ └── index.html │ ├── childcollection │ │ └── index.html │ ├── deinitializers │ │ └── index.html │ ├── enumerations │ │ └── index.html │ ├── initializers │ │ └── index.html │ ├── isfileprivate │ │ └── index.html │ └── precedencegroups │ │ └── index.html │ ├── class │ ├── index.html │ ├── actors │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── name │ │ └── index.html │ ├── node │ │ └── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── attributes │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── description │ │ └── index.html │ ├── extensions │ │ └── index.html │ ├── functions │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── inheritance │ │ └── index.html │ ├── init(node:) │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isinternal │ │ └── index.html │ ├── isprivate │ │ └── index.html │ ├── ispublic │ │ └── index.html │ ├── keyword │ │ └── index.html │ ├── modifiers │ │ └── index.html │ ├── operators │ │ └── index.html │ ├── protocols │ │ └── index.html │ ├── structures │ │ └── index.html │ ├── subscripts │ │ └── index.html │ ├── typealiases │ │ └── index.html │ ├── variables │ │ └── index.html │ ├── childcollection │ │ └── index.html │ ├── deinitializers │ │ └── index.html │ ├── enumerations │ │ └── index.html │ ├── initializers │ │ └── index.html │ ├── isfileprivate │ │ └── index.html │ └── precedencegroups │ │ └── index.html │ ├── closure │ ├── index.html │ ├── node │ │ └── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── input │ │ └── index.html │ ├── isasync │ │ └── index.html │ ├── output │ │ └── index.html │ ├── rawinput │ │ └── index.html │ ├── rawoutput │ │ └── index.html │ ├── declaration │ │ └── index.html │ ├── description │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── init(node:) │ │ └── index.html │ ├── isautoescaping │ │ └── index.html │ ├── isescaping │ │ └── index.html │ ├── isoptional │ │ └── index.html │ ├── isthrowing │ │ └── index.html │ ├── isvoidinput │ │ └── index.html │ └── isvoidoutput │ │ └── index.html │ ├── import │ ├── index.html │ ├── kind │ │ └── index.html │ ├── node │ │ └── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── attributes │ │ └── index.html │ ├── keyword │ │ └── index.html │ └── modifiers │ │ └── index.html │ ├── result │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── init(_:) │ │ └── index.html │ └── isoptional │ │ └── index.html │ ├── setdecl │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ └── init(_:) │ │ └── index.html │ ├── swift │ ├── index.html │ └── collection │ │ └── index.html │ ├── tuple │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── description │ │ └── index.html │ ├── elements │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ └── isoptional │ │ └── index.html │ ├── accessor │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── actors │ │ └── index.html │ ├── body │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── isasync │ │ └── index.html │ ├── modifier │ │ └── index.html │ ├── node │ │ └── index.html │ ├── attributes │ │ └── index.html │ ├── description │ │ └── index.html │ ├── enumerations │ │ └── index.html │ ├── extensions │ │ └── index.html │ ├── functions │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── init(node:) │ │ └── index.html │ ├── initializers │ │ └── index.html │ ├── isthrowing │ │ └── index.html │ ├── operators │ │ └── index.html │ ├── protocols │ │ └── index.html │ ├── structures │ │ └── index.html │ ├── subscripts │ │ └── index.html │ ├── typealiases │ │ └── index.html │ └── variables │ │ └── index.html │ ├── arraydecl │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── description │ │ └── index.html │ ├── elementtype │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ └── isoptional │ │ └── index.html │ ├── attribute │ ├── index.html │ ├── name │ │ └── index.html │ ├── node │ │ └── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── argument │ │ └── index.html │ ├── arguments │ │ └── index.html │ ├── description │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ └── init(node:) │ │ └── index.html │ ├── codeblock │ ├── index.html │ ├── actors │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── kind │ │ └── index.html │ ├── node │ │ └── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── description │ │ └── index.html │ ├── enumerations │ │ └── index.html │ └── extensions │ │ └── index.html │ ├── declaration │ └── index.html │ ├── entitytype │ ├── index.html │ └── empty │ │ └── index.html │ ├── enumeration │ ├── index.html │ ├── case │ │ └── index.html │ ├── cases │ │ └── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── extension │ ├── index.html │ ├── actors │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── keyword │ │ └── index.html │ └── node │ │ └── index.html │ ├── function │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── actors │ │ └── index.html │ ├── body │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── isasync │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── ispublic │ │ └── index.html │ ├── keyword │ │ └── index.html │ └── node │ │ └── index.html │ ├── initializer │ ├── index.html │ ├── body │ │ └── index.html │ └── node │ │ └── index.html │ ├── modifier │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── detail │ │ └── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── operator │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── keyword │ │ └── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── parameter │ ├── index.html │ ├── isinout │ │ └── index.html │ ├── name │ │ └── index.html │ ├── node │ │ └── index.html │ ├── rawtype │ │ └── index.html │ └── type │ │ └── index.html │ ├── protocoldecl │ ├── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── structure │ ├── index.html │ ├── actors │ │ └── index.html │ ├── classes │ │ └── index.html │ ├── imports │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── keyword │ │ └── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── subscript │ ├── index.html │ ├── indices │ │ └── index.html │ ├── isasync │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── keyword │ │ └── index.html │ └── node │ │ └── index.html │ ├── swiftsyntax │ └── index.html │ ├── syntaxtree │ ├── index.html │ └── actors │ │ └── index.html │ ├── typealias │ ├── index.html │ ├── isfinal │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── keyword │ │ └── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── variable │ ├── index.html │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── isasync │ │ └── index.html │ ├── isfinal │ │ └── index.html │ ├── isopen │ │ └── index.html │ ├── ispublic │ │ └── index.html │ ├── isstored │ │ └── index.html │ ├── keyword │ │ └── index.html │ ├── name │ │ └── index.html │ ├── node │ │ └── index.html │ └── type │ │ └── index.html │ ├── associatedtype │ ├── index.html │ ├── keyword │ │ └── index.html │ ├── name │ │ └── index.html │ └── node │ │ └── index.html │ ├── deinitializer │ └── index.html │ ├── dictionarydecl │ └── index.html │ ├── effectspecifiers │ └── index.html │ ├── genericparameter │ └── index.html │ ├── modifierassessing │ └── index.html │ ├── precedencegroup │ └── index.html │ └── syntaxtreeerror │ └── index.html └── .gitignore /.swift-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- 1 | version: 1 2 | builder: 3 | configs: 4 | - documentation_targets: [SyntaxSparrow] -------------------------------------------------------------------------------- /Sources/SyntaxSparrow/SyntaxSparrow.swift: -------------------------------------------------------------------------------- 1 | // The Swift Programming Language 2 | // https://docs.swift.org/swift-book 3 | -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheekyGhost-Labs/SyntaxSparrow/HEAD/SyntaxSparrow.doccarchive/favicon.ico -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheekyGhost-Labs/SyntaxSparrow/HEAD/SyntaxSparrow.doccarchive/index/data.mdb -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheekyGhost-Labs/SyntaxSparrow/HEAD/SyntaxSparrow.doccarchive/developer-og.jpg -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheekyGhost-Labs/SyntaxSparrow/HEAD/SyntaxSparrow.doccarchive/index/navigator.index -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleDisplayName":"SyntaxSparrow","bundleIdentifier":"SyntaxSparrow","schemaVersion":{"major":0,"minor":1,"patch":0}} -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheekyGhost-Labs/SyntaxSparrow/HEAD/SyntaxSparrow.doccarchive/developer-og-twitter.jpg -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheekyGhost-Labs/SyntaxSparrow/HEAD/SyntaxSparrow.doccarchive/index/availability.index -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | DerivedData/ 7 | .swiftpm/config/registries.json 8 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 9 | .netrc 10 | -------------------------------------------------------------------------------- /Sources/SyntaxSparrow/Public/SyntaxTree/SyntaxTreeError.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SyntaxTreeError.swift 3 | // 4 | // 5 | // Copyright (c) CheekyGhost Labs 2023. All Rights Reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | public enum SyntaxTreeError: LocalizedError { 11 | case unableToResolveFileAtPath(String) 12 | case invalidContextForSourceResolving(String) 13 | } 14 | -------------------------------------------------------------------------------- /Sources/SyntaxSparrow/Internal/Extensions/String+Convenience.swift: -------------------------------------------------------------------------------- 1 | // 2 | // String+Convenience.swift 3 | // 4 | // 5 | // Copyright (c) CheekyGhost Labs 2023. All Rights Reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | extension String { 11 | /// Convenience method to trim whitespaces and newlines from a string. 12 | var trimmed: String { 13 | trimmingCharacters(in: .whitespacesAndNewlines) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/SyntaxSparrow/Public/Protocols/Declaration.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Declaration.swift 3 | // 4 | // 5 | // Copyright (c) CheekyGhost Labs 2023. All Rights Reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | /// Public protocol that any public semantic declarations will conform to. A declaration is considered a semantic element that represents items such as struct, protocol, class, enum, etc 11 | public protocol Declaration: SyntaxRepresenting {} 12 | -------------------------------------------------------------------------------- /Sources/SyntaxSparrow/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyTracking 6 | 7 | NSPrivacyCollectedDataTypes 8 | 9 | NSPrivacyTrackingDomains 10 | 11 | NSPrivacyAccessedAPITypes 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Sources/SyntaxSparrow/Public/Protocols/DeclarationComponent.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeclarationComponent.swift 3 | // 4 | // 5 | // Copyright (c) CheekyGhost Labs 2023. All Rights Reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | /// Public protocol that any semantic elements not considered a declaration will conform to. 11 | /// A declaration component is considered a semantic element that supports or decorates a declaration such as attributes, modifiers, generic parameter/requirement, parameters, etc 12 | public protocol DeclarationComponent: SyntaxRepresenting {} 13 | -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/result/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/setdecl/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/swift/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/declaration/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/entitytype/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/enumeration/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/kind/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/initializer/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifier/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/operator/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/parameter/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/protocoldecl/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/swiftsyntax/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/syntaxtree/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/typealias/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/body/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/isasync/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/modifier/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/attributes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/extensions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/functions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/inheritance/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/init(node:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/isinternal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/isprivate/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/ispublic/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/modifiers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/operators/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/protocols/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/structures/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/subscripts/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/typealiases/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/variables/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/associatedtype/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/attributes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/extensions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/functions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/inheritance/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/init(node:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/isinternal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/isprivate/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/ispublic/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/modifiers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/operators/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/protocols/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/structures/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/subscripts/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/typealiases/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/variables/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/input/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isasync/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/output/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/rawinput/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/rawoutput/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/kind/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/deinitializer/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/dictionarydecl/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/effectspecifiers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/entitytype/empty/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/enumeration/case/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/enumeration/cases/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/enumeration/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/enumeration/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/extension/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/body/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/isasync/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/ispublic/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/function/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/genericparameter/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/attributes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/import/modifiers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/initializer/body/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/initializer/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifier/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifier/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifier/detail/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifier/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifier/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/modifierassessing/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/operator/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/operator/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/operator/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/operator/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/operator/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/parameter/isinout/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/parameter/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/parameter/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/parameter/rawtype/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/parameter/type/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/precedencegroup/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/protocoldecl/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/protocoldecl/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/result/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/result/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/result/init(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/result/isoptional/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/setdecl/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/setdecl/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/setdecl/init(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/classes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/imports/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/structure/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/indices/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/isasync/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/subscript/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/swift/collection/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/syntaxtree/actors/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/syntaxtreeerror/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/elements/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/tuple/isoptional/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/typealias/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/typealias/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/typealias/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/typealias/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/typealias/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/isasync/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/isfinal/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/isopen/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/ispublic/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/isstored/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/variable/type/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/attributes/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/enumerations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/extensions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/functions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/init(node:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/initializers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/isthrowing/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/operators/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/protocols/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/structures/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/subscripts/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/typealiases/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/accessor/variables/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/childcollection/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/deinitializers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/enumerations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/initializers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/isfileprivate/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/actor/precedencegroups/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/elementtype/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/arraydecl/isoptional/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/associatedtype/keyword/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/associatedtype/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/associatedtype/node/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/argument/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/arguments/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/attribute/init(node:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/childcollection/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/deinitializers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/enumerations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/initializers/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/isfileprivate/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/class/precedencegroups/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/declaration/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/init(node:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isautoescaping/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isescaping/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isoptional/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isthrowing/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isvoidinput/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/closure/isvoidoutput/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/==(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/enumerations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /SyntaxSparrow.doccarchive/documentation/syntaxsparrow/codeblock/extensions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
--------------------------------------------------------------------------------