├── .ert-runner ├── .gitignore ├── Cask ├── LICENSE ├── Makefile ├── README.org ├── screenshots ├── dropFirst.png ├── dynamicCallable.png ├── import.png └── isExecutableFile.png ├── swift-helpful-regex.el ├── swift-helpful.el ├── swift-info ├── LICENSE ├── Makefile ├── README.md ├── dir ├── helper.el ├── images │ ├── CollectionTypes_intro_2x.png │ ├── UTF16_2x.png │ ├── UTF8_2x.png │ ├── UnicodeScalar_2x.png │ ├── barcode_QR_2x.png │ ├── barcode_UPC_2x.png │ ├── bitshiftSignedAddition_2x.png │ ├── bitshiftSignedFour_2x.png │ ├── bitshiftSignedMinusFourValue_2x.png │ ├── bitshiftSignedMinusFour_2x.png │ ├── bitshiftSigned_2x.png │ ├── bitshiftUnsigned_2x.png │ ├── bitwiseAND_2x.png │ ├── bitwiseNOT_2x.png │ ├── bitwiseOR_2x.png │ ├── bitwiseXOR_2x.png │ ├── chessBoard_2x.png │ ├── closureReferenceCycle01_2x.png │ ├── closureReferenceCycle02_2x.png │ ├── computedProperties_2x.png │ ├── coordinateGraphComplex_2x.png │ ├── coordinateGraphMedium_2x.png │ ├── coordinateGraphSimple_2x.png │ ├── initializerDelegation01_2x.png │ ├── initializerDelegation02_2x.png │ ├── initializersExample01_2x.png │ ├── initializersExample02_2x.png │ ├── initializersExample03_2x.png │ ├── memory_increment_2x.png │ ├── memory_share_health_maria_2x.png │ ├── memory_share_health_oscar_2x.png │ ├── memory_shopping_2x.png │ ├── multilineStringWhitespace_2x.png │ ├── overflowAddition_2x.png │ ├── overflowSignedSubtraction_2x.png │ ├── overflowUnsignedSubtraction_2x.png │ ├── referenceCycle01_2x.png │ ├── referenceCycle02_2x.png │ ├── referenceCycle03_2x.png │ ├── remainderInteger_2x.png │ ├── setEulerDiagram_2x.png │ ├── setVennDiagram_2x.png │ ├── sharedStateClass_2x.png │ ├── sharedStateStruct_2x.png │ ├── snakesAndLadders_2x.png │ ├── stackPoppedOneString_2x.png │ ├── stackPushPop_2x.png │ ├── stackPushedFourStrings_2x.png │ ├── staticPropertiesVUMeter_2x.png │ ├── stringSubstring_2x.png │ ├── subscriptMatrix01_2x.png │ ├── subscriptMatrix02_2x.png │ ├── twoPhaseInitialization01_2x.png │ ├── twoPhaseInitialization02_2x.png │ ├── unownedOptionalReference_2x.png │ ├── unownedReference01_2x.png │ ├── unownedReference02_2x.png │ ├── vectorAddition_2x.png │ ├── weakReference01_2x.png │ ├── weakReference02_2x.png │ └── weakReference03_2x.png ├── screenshots │ └── info-lookup.png ├── swift-reference.html ├── swift-reference.info ├── swift-reference.org ├── swift-reference.texi ├── swift.html ├── swift.info ├── swift.org └── swift.texi ├── targets └── checkdoc.el └── test ├── swift-helpful-info-loader.el ├── swift-helpful-regex-test.el ├── swift-helpful-test.el ├── test-data ├── contains-definition.txt ├── contains-rg-command.txt ├── contains-rg-results.txt ├── contains-type-signature.txt ├── filter-definition.txt ├── filter-rg-command.txt ├── filter-rg-results.txt ├── filter-type-signature.txt └── stdlib-mocks │ ├── ArrayType.swift │ ├── ExistentialCollection.swift.gyb │ ├── NSStringAPI.swift │ └── Sequence.swift └── test-helper.el /.ert-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/.ert-runner -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/.gitignore -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/README.org -------------------------------------------------------------------------------- /screenshots/dropFirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/screenshots/dropFirst.png -------------------------------------------------------------------------------- /screenshots/dynamicCallable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/screenshots/dynamicCallable.png -------------------------------------------------------------------------------- /screenshots/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/screenshots/import.png -------------------------------------------------------------------------------- /screenshots/isExecutableFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/screenshots/isExecutableFile.png -------------------------------------------------------------------------------- /swift-helpful-regex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-helpful-regex.el -------------------------------------------------------------------------------- /swift-helpful.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-helpful.el -------------------------------------------------------------------------------- /swift-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/LICENSE -------------------------------------------------------------------------------- /swift-info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/Makefile -------------------------------------------------------------------------------- /swift-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/README.md -------------------------------------------------------------------------------- /swift-info/dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/dir -------------------------------------------------------------------------------- /swift-info/helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/helper.el -------------------------------------------------------------------------------- /swift-info/images/CollectionTypes_intro_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/CollectionTypes_intro_2x.png -------------------------------------------------------------------------------- /swift-info/images/UTF16_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/UTF16_2x.png -------------------------------------------------------------------------------- /swift-info/images/UTF8_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/UTF8_2x.png -------------------------------------------------------------------------------- /swift-info/images/UnicodeScalar_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/UnicodeScalar_2x.png -------------------------------------------------------------------------------- /swift-info/images/barcode_QR_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/barcode_QR_2x.png -------------------------------------------------------------------------------- /swift-info/images/barcode_UPC_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/barcode_UPC_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitshiftSignedAddition_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitshiftSignedAddition_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitshiftSignedFour_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitshiftSignedFour_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitshiftSignedMinusFourValue_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitshiftSignedMinusFourValue_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitshiftSignedMinusFour_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitshiftSignedMinusFour_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitshiftSigned_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitshiftSigned_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitshiftUnsigned_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitshiftUnsigned_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitwiseAND_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitwiseAND_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitwiseNOT_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitwiseNOT_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitwiseOR_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitwiseOR_2x.png -------------------------------------------------------------------------------- /swift-info/images/bitwiseXOR_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/bitwiseXOR_2x.png -------------------------------------------------------------------------------- /swift-info/images/chessBoard_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/chessBoard_2x.png -------------------------------------------------------------------------------- /swift-info/images/closureReferenceCycle01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/closureReferenceCycle01_2x.png -------------------------------------------------------------------------------- /swift-info/images/closureReferenceCycle02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/closureReferenceCycle02_2x.png -------------------------------------------------------------------------------- /swift-info/images/computedProperties_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/computedProperties_2x.png -------------------------------------------------------------------------------- /swift-info/images/coordinateGraphComplex_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/coordinateGraphComplex_2x.png -------------------------------------------------------------------------------- /swift-info/images/coordinateGraphMedium_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/coordinateGraphMedium_2x.png -------------------------------------------------------------------------------- /swift-info/images/coordinateGraphSimple_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/coordinateGraphSimple_2x.png -------------------------------------------------------------------------------- /swift-info/images/initializerDelegation01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/initializerDelegation01_2x.png -------------------------------------------------------------------------------- /swift-info/images/initializerDelegation02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/initializerDelegation02_2x.png -------------------------------------------------------------------------------- /swift-info/images/initializersExample01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/initializersExample01_2x.png -------------------------------------------------------------------------------- /swift-info/images/initializersExample02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/initializersExample02_2x.png -------------------------------------------------------------------------------- /swift-info/images/initializersExample03_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/initializersExample03_2x.png -------------------------------------------------------------------------------- /swift-info/images/memory_increment_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/memory_increment_2x.png -------------------------------------------------------------------------------- /swift-info/images/memory_share_health_maria_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/memory_share_health_maria_2x.png -------------------------------------------------------------------------------- /swift-info/images/memory_share_health_oscar_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/memory_share_health_oscar_2x.png -------------------------------------------------------------------------------- /swift-info/images/memory_shopping_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/memory_shopping_2x.png -------------------------------------------------------------------------------- /swift-info/images/multilineStringWhitespace_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/multilineStringWhitespace_2x.png -------------------------------------------------------------------------------- /swift-info/images/overflowAddition_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/overflowAddition_2x.png -------------------------------------------------------------------------------- /swift-info/images/overflowSignedSubtraction_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/overflowSignedSubtraction_2x.png -------------------------------------------------------------------------------- /swift-info/images/overflowUnsignedSubtraction_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/overflowUnsignedSubtraction_2x.png -------------------------------------------------------------------------------- /swift-info/images/referenceCycle01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/referenceCycle01_2x.png -------------------------------------------------------------------------------- /swift-info/images/referenceCycle02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/referenceCycle02_2x.png -------------------------------------------------------------------------------- /swift-info/images/referenceCycle03_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/referenceCycle03_2x.png -------------------------------------------------------------------------------- /swift-info/images/remainderInteger_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/remainderInteger_2x.png -------------------------------------------------------------------------------- /swift-info/images/setEulerDiagram_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/setEulerDiagram_2x.png -------------------------------------------------------------------------------- /swift-info/images/setVennDiagram_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/setVennDiagram_2x.png -------------------------------------------------------------------------------- /swift-info/images/sharedStateClass_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/sharedStateClass_2x.png -------------------------------------------------------------------------------- /swift-info/images/sharedStateStruct_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/sharedStateStruct_2x.png -------------------------------------------------------------------------------- /swift-info/images/snakesAndLadders_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/snakesAndLadders_2x.png -------------------------------------------------------------------------------- /swift-info/images/stackPoppedOneString_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/stackPoppedOneString_2x.png -------------------------------------------------------------------------------- /swift-info/images/stackPushPop_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/stackPushPop_2x.png -------------------------------------------------------------------------------- /swift-info/images/stackPushedFourStrings_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/stackPushedFourStrings_2x.png -------------------------------------------------------------------------------- /swift-info/images/staticPropertiesVUMeter_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/staticPropertiesVUMeter_2x.png -------------------------------------------------------------------------------- /swift-info/images/stringSubstring_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/stringSubstring_2x.png -------------------------------------------------------------------------------- /swift-info/images/subscriptMatrix01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/subscriptMatrix01_2x.png -------------------------------------------------------------------------------- /swift-info/images/subscriptMatrix02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/subscriptMatrix02_2x.png -------------------------------------------------------------------------------- /swift-info/images/twoPhaseInitialization01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/twoPhaseInitialization01_2x.png -------------------------------------------------------------------------------- /swift-info/images/twoPhaseInitialization02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/twoPhaseInitialization02_2x.png -------------------------------------------------------------------------------- /swift-info/images/unownedOptionalReference_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/unownedOptionalReference_2x.png -------------------------------------------------------------------------------- /swift-info/images/unownedReference01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/unownedReference01_2x.png -------------------------------------------------------------------------------- /swift-info/images/unownedReference02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/unownedReference02_2x.png -------------------------------------------------------------------------------- /swift-info/images/vectorAddition_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/vectorAddition_2x.png -------------------------------------------------------------------------------- /swift-info/images/weakReference01_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/weakReference01_2x.png -------------------------------------------------------------------------------- /swift-info/images/weakReference02_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/weakReference02_2x.png -------------------------------------------------------------------------------- /swift-info/images/weakReference03_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/images/weakReference03_2x.png -------------------------------------------------------------------------------- /swift-info/screenshots/info-lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/screenshots/info-lookup.png -------------------------------------------------------------------------------- /swift-info/swift-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift-reference.html -------------------------------------------------------------------------------- /swift-info/swift-reference.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift-reference.info -------------------------------------------------------------------------------- /swift-info/swift-reference.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift-reference.org -------------------------------------------------------------------------------- /swift-info/swift-reference.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift-reference.texi -------------------------------------------------------------------------------- /swift-info/swift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift.html -------------------------------------------------------------------------------- /swift-info/swift.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift.info -------------------------------------------------------------------------------- /swift-info/swift.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift.org -------------------------------------------------------------------------------- /swift-info/swift.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/swift-info/swift.texi -------------------------------------------------------------------------------- /targets/checkdoc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/targets/checkdoc.el -------------------------------------------------------------------------------- /test/swift-helpful-info-loader.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/swift-helpful-info-loader.el -------------------------------------------------------------------------------- /test/swift-helpful-regex-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/swift-helpful-regex-test.el -------------------------------------------------------------------------------- /test/swift-helpful-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/swift-helpful-test.el -------------------------------------------------------------------------------- /test/test-data/contains-definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/contains-definition.txt -------------------------------------------------------------------------------- /test/test-data/contains-rg-command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/contains-rg-command.txt -------------------------------------------------------------------------------- /test/test-data/contains-rg-results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/contains-rg-results.txt -------------------------------------------------------------------------------- /test/test-data/contains-type-signature.txt: -------------------------------------------------------------------------------- 1 | func contains(_ other: T) -> Bool where T : StringProtocol 2 | -------------------------------------------------------------------------------- /test/test-data/filter-definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/filter-definition.txt -------------------------------------------------------------------------------- /test/test-data/filter-rg-command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/filter-rg-command.txt -------------------------------------------------------------------------------- /test/test-data/filter-rg-results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/filter-rg-results.txt -------------------------------------------------------------------------------- /test/test-data/filter-type-signature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/filter-type-signature.txt -------------------------------------------------------------------------------- /test/test-data/stdlib-mocks/ArrayType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/stdlib-mocks/ArrayType.swift -------------------------------------------------------------------------------- /test/test-data/stdlib-mocks/ExistentialCollection.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/stdlib-mocks/ExistentialCollection.swift.gyb -------------------------------------------------------------------------------- /test/test-data/stdlib-mocks/NSStringAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/stdlib-mocks/NSStringAPI.swift -------------------------------------------------------------------------------- /test/test-data/stdlib-mocks/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-data/stdlib-mocks/Sequence.swift -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmartin/swift-helpful/HEAD/test/test-helper.el --------------------------------------------------------------------------------