├── .gitignore ├── LICENSE.txt ├── OCTotallyLazy.podspec ├── OCTotallyLazy.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── stuartervine.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ ├── AllTests.xcscheme │ └── OCTotallyLazy.xcscheme ├── OCTotallyLazy ├── Callables.h ├── Callables.m ├── EasyEnumerable.h ├── EasyEnumerable.m ├── Enumerable.h ├── Flattenable.h ├── Foldable.h ├── Group.h ├── Group.m ├── Info.plist ├── Mappable.h ├── MemoisedSequence.h ├── MemoisedSequence.m ├── NSArray+OCTotallyLazy.h ├── NSArray+OCTotallyLazy.m ├── NSDictionary+OCTotallyLazy.h ├── NSDictionary+OCTotallyLazy.m ├── NSSet+OCTotallyLazy.h ├── NSSet+OCTotallyLazy.m ├── NoSuchElementException.h ├── NoSuchElementException.m ├── None.h ├── None.m ├── OCTotallyLazy-Info.plist ├── OCTotallyLazy-Prefix.pch ├── OCTotallyLazy.h ├── Option.h ├── Option.m ├── Pair.h ├── Pair.m ├── Queue.h ├── Queue.m ├── Range.h ├── Range.m ├── Sequence.h ├── Sequence.m ├── Some.h ├── Some.m ├── Types.h ├── enumerators │ ├── EmptyEnumerator.h │ ├── EmptyEnumerator.m │ ├── EnumerateEnumerator.h │ ├── EnumerateEnumerator.m │ ├── FilterEnumerator.h │ ├── FilterEnumerator.m │ ├── FlattenEnumerator.h │ ├── FlattenEnumerator.m │ ├── GroupedEnumerator.h │ ├── GroupedEnumerator.m │ ├── MapEnumerator.h │ ├── MapEnumerator.m │ ├── MemoisedEnumerator.h │ ├── MemoisedEnumerator.m │ ├── MergeEnumerator.h │ ├── MergeEnumerator.m │ ├── NSEnumerator+OCTotallyLazy.h │ ├── NSEnumerator+OCTotallyLazy.m │ ├── PairEnumerator.h │ ├── PairEnumerator.m │ ├── PartitionEnumerator.h │ ├── PartitionEnumerator.m │ ├── RepeatEnumerator.h │ ├── RepeatEnumerator.m │ ├── SingleValueEnumerator.h │ ├── SingleValueEnumerator.m │ ├── TakeWhileEnumerator.h │ └── TakeWhileEnumerator.m ├── functions │ ├── Function1.h │ ├── Function1.m │ ├── Function2.h │ ├── Function2.m │ ├── Functions.h │ └── Functions.m ├── numbers │ ├── Numbers.h │ └── Numbers.m └── predicates │ ├── Predicates.h │ └── Predicates.m ├── OCTotallyLazyTests ├── FunctionsTest.m ├── Info.plist ├── KeyWithoutToString.h ├── KeyWithoutToString.m ├── NSArrayTest.m ├── NSDictionaryTest.m ├── NSSetTest.m ├── OCTotallyLazyTestCase.h ├── OCTotallyLazyTestCase.m ├── OCTotallyLazyTests.m ├── OptionTest.m ├── PairTest.m ├── RangeTest.m ├── SequenceTest.m ├── enumerators │ ├── GroupedEnumeratorTest.m │ ├── MemoisedEnumeratorTest.m │ └── RepeatEnumeratorTest.m ├── numbers │ └── NumbersTest.m └── predicates │ └── PredicatesTest.m └── README.markdown /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OCTotallyLazy.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy.podspec -------------------------------------------------------------------------------- /OCTotallyLazy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OCTotallyLazy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OCTotallyLazy.xcodeproj/project.xcworkspace/xcuserdata/stuartervine.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy.xcodeproj/project.xcworkspace/xcuserdata/stuartervine.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OCTotallyLazy.xcodeproj/xcshareddata/xcschemes/AllTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy.xcodeproj/xcshareddata/xcschemes/AllTests.xcscheme -------------------------------------------------------------------------------- /OCTotallyLazy.xcodeproj/xcshareddata/xcschemes/OCTotallyLazy.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy.xcodeproj/xcshareddata/xcschemes/OCTotallyLazy.xcscheme -------------------------------------------------------------------------------- /OCTotallyLazy/Callables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Callables.h -------------------------------------------------------------------------------- /OCTotallyLazy/Callables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Callables.m -------------------------------------------------------------------------------- /OCTotallyLazy/EasyEnumerable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/EasyEnumerable.h -------------------------------------------------------------------------------- /OCTotallyLazy/EasyEnumerable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/EasyEnumerable.m -------------------------------------------------------------------------------- /OCTotallyLazy/Enumerable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Enumerable.h -------------------------------------------------------------------------------- /OCTotallyLazy/Flattenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Flattenable.h -------------------------------------------------------------------------------- /OCTotallyLazy/Foldable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Foldable.h -------------------------------------------------------------------------------- /OCTotallyLazy/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Group.h -------------------------------------------------------------------------------- /OCTotallyLazy/Group.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Group.m -------------------------------------------------------------------------------- /OCTotallyLazy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Info.plist -------------------------------------------------------------------------------- /OCTotallyLazy/Mappable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Mappable.h -------------------------------------------------------------------------------- /OCTotallyLazy/MemoisedSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/MemoisedSequence.h -------------------------------------------------------------------------------- /OCTotallyLazy/MemoisedSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/MemoisedSequence.m -------------------------------------------------------------------------------- /OCTotallyLazy/NSArray+OCTotallyLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NSArray+OCTotallyLazy.h -------------------------------------------------------------------------------- /OCTotallyLazy/NSArray+OCTotallyLazy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NSArray+OCTotallyLazy.m -------------------------------------------------------------------------------- /OCTotallyLazy/NSDictionary+OCTotallyLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NSDictionary+OCTotallyLazy.h -------------------------------------------------------------------------------- /OCTotallyLazy/NSDictionary+OCTotallyLazy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NSDictionary+OCTotallyLazy.m -------------------------------------------------------------------------------- /OCTotallyLazy/NSSet+OCTotallyLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NSSet+OCTotallyLazy.h -------------------------------------------------------------------------------- /OCTotallyLazy/NSSet+OCTotallyLazy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NSSet+OCTotallyLazy.m -------------------------------------------------------------------------------- /OCTotallyLazy/NoSuchElementException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NoSuchElementException.h -------------------------------------------------------------------------------- /OCTotallyLazy/NoSuchElementException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/NoSuchElementException.m -------------------------------------------------------------------------------- /OCTotallyLazy/None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/None.h -------------------------------------------------------------------------------- /OCTotallyLazy/None.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/None.m -------------------------------------------------------------------------------- /OCTotallyLazy/OCTotallyLazy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/OCTotallyLazy-Info.plist -------------------------------------------------------------------------------- /OCTotallyLazy/OCTotallyLazy-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/OCTotallyLazy-Prefix.pch -------------------------------------------------------------------------------- /OCTotallyLazy/OCTotallyLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/OCTotallyLazy.h -------------------------------------------------------------------------------- /OCTotallyLazy/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Option.h -------------------------------------------------------------------------------- /OCTotallyLazy/Option.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Option.m -------------------------------------------------------------------------------- /OCTotallyLazy/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Pair.h -------------------------------------------------------------------------------- /OCTotallyLazy/Pair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Pair.m -------------------------------------------------------------------------------- /OCTotallyLazy/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Queue.h -------------------------------------------------------------------------------- /OCTotallyLazy/Queue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Queue.m -------------------------------------------------------------------------------- /OCTotallyLazy/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Range.h -------------------------------------------------------------------------------- /OCTotallyLazy/Range.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Range.m -------------------------------------------------------------------------------- /OCTotallyLazy/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Sequence.h -------------------------------------------------------------------------------- /OCTotallyLazy/Sequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Sequence.m -------------------------------------------------------------------------------- /OCTotallyLazy/Some.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Some.h -------------------------------------------------------------------------------- /OCTotallyLazy/Some.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Some.m -------------------------------------------------------------------------------- /OCTotallyLazy/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/Types.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/EmptyEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/EmptyEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/EmptyEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/EmptyEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/EnumerateEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/EnumerateEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/EnumerateEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/EnumerateEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/FilterEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/FilterEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/FilterEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/FilterEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/FlattenEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/FlattenEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/FlattenEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/FlattenEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/GroupedEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/GroupedEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/GroupedEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/GroupedEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/MapEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/MapEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/MapEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/MapEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/MemoisedEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/MemoisedEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/MemoisedEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/MemoisedEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/MergeEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/MergeEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/MergeEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/MergeEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/NSEnumerator+OCTotallyLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/NSEnumerator+OCTotallyLazy.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/NSEnumerator+OCTotallyLazy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/NSEnumerator+OCTotallyLazy.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/PairEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/PairEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/PairEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/PairEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/PartitionEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/PartitionEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/PartitionEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/PartitionEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/RepeatEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/RepeatEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/RepeatEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/RepeatEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/SingleValueEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/SingleValueEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/SingleValueEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/SingleValueEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/TakeWhileEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/TakeWhileEnumerator.h -------------------------------------------------------------------------------- /OCTotallyLazy/enumerators/TakeWhileEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/enumerators/TakeWhileEnumerator.m -------------------------------------------------------------------------------- /OCTotallyLazy/functions/Function1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/functions/Function1.h -------------------------------------------------------------------------------- /OCTotallyLazy/functions/Function1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/functions/Function1.m -------------------------------------------------------------------------------- /OCTotallyLazy/functions/Function2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/functions/Function2.h -------------------------------------------------------------------------------- /OCTotallyLazy/functions/Function2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/functions/Function2.m -------------------------------------------------------------------------------- /OCTotallyLazy/functions/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/functions/Functions.h -------------------------------------------------------------------------------- /OCTotallyLazy/functions/Functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/functions/Functions.m -------------------------------------------------------------------------------- /OCTotallyLazy/numbers/Numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/numbers/Numbers.h -------------------------------------------------------------------------------- /OCTotallyLazy/numbers/Numbers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/numbers/Numbers.m -------------------------------------------------------------------------------- /OCTotallyLazy/predicates/Predicates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/predicates/Predicates.h -------------------------------------------------------------------------------- /OCTotallyLazy/predicates/Predicates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazy/predicates/Predicates.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/FunctionsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/FunctionsTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/Info.plist -------------------------------------------------------------------------------- /OCTotallyLazyTests/KeyWithoutToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/KeyWithoutToString.h -------------------------------------------------------------------------------- /OCTotallyLazyTests/KeyWithoutToString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/KeyWithoutToString.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/NSArrayTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/NSArrayTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/NSDictionaryTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/NSDictionaryTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/NSSetTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/NSSetTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/OCTotallyLazyTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/OCTotallyLazyTestCase.h -------------------------------------------------------------------------------- /OCTotallyLazyTests/OCTotallyLazyTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/OCTotallyLazyTestCase.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/OCTotallyLazyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/OCTotallyLazyTests.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/OptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/OptionTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/PairTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/PairTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/RangeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/RangeTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/SequenceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/SequenceTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/enumerators/GroupedEnumeratorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/enumerators/GroupedEnumeratorTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/enumerators/MemoisedEnumeratorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/enumerators/MemoisedEnumeratorTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/enumerators/RepeatEnumeratorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/enumerators/RepeatEnumeratorTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/numbers/NumbersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/numbers/NumbersTest.m -------------------------------------------------------------------------------- /OCTotallyLazyTests/predicates/PredicatesTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/OCTotallyLazyTests/predicates/PredicatesTest.m -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartervine/OCTotallyLazy/HEAD/README.markdown --------------------------------------------------------------------------------