├── .gitattributes ├── .gitignore ├── Benchmarks ├── Benchmarks.csproj └── Benchmarks │ ├── BenchmarkCompare.cs │ ├── BenchmarkDistinct.cs │ ├── FrozenDictionaryBenchmark.cs │ └── Program.cs ├── Examples ├── Examples.csproj └── Examples │ ├── ExampleHashSet.cs │ ├── ExampleString.cs │ ├── IExample.cs │ └── Program.cs ├── LICENSE ├── NativeCollections.sln ├── NativeCollections ├── NativeCollections.csproj └── NativeCollections │ ├── Attribute │ ├── BindingTypeAttribute.cs │ ├── CustomizableAttribute.cs │ ├── IsAssignableToAttribute.cs │ ├── MustBeZeroedAttribute.cs │ ├── NativeCollectionAttribute.cs │ ├── StackallocCollectionAttribute.cs │ └── UnsafeCollectionAttribute.cs │ ├── Enum │ ├── FromType.cs │ ├── InsertResult.cs │ └── InvalidFormatReason.cs │ ├── Helpers │ ├── ArchitectureHelpers.cs │ ├── ArrayHelpers.cs │ ├── BinarySearchHelpers.cs │ ├── BitArrayHelpers.cs │ ├── BitOperationsHelpers.cs │ ├── CharHelpers.cs │ ├── EncodingHelpers.cs │ ├── FormatHelpers.cs │ ├── FrozenHelpers.cs │ ├── HashHelpers.cs │ ├── InterlockedHelpers.cs │ ├── MarvinHelpers.cs │ ├── MathHelpers.cs │ ├── RingBufferHelpers.cs │ ├── SpanHelpers.cs │ ├── ThrowHelpers.cs │ ├── TypeHelpers`1.cs │ ├── UnsafeHelpers.cs │ └── Utf8FormatHelpers.cs │ ├── Native │ ├── NativeArray2`1.cs │ ├── NativeArray3`1.cs │ ├── NativeArrayPool`1.cs │ ├── NativeArrayReference`1.cs │ ├── NativeArray`1.cs │ ├── NativeAtomic32`1.cs │ ├── NativeAtomic64`1.cs │ ├── NativeAtomicIntPtr.cs │ ├── NativeAtomicReference`1.cs │ ├── NativeAtomicUIntPtr.cs │ ├── NativeBitArray.cs │ ├── NativeBitArraySlot.cs │ ├── NativeChunkedDeque`1.cs │ ├── NativeChunkedQueue`1.cs │ ├── NativeChunkedStack`1.cs │ ├── NativeChunkedStream.cs │ ├── NativeCompositeFormat.cs │ ├── NativeConcurrentChunkedStream.cs │ ├── NativeConcurrentDictionary`2.cs │ ├── NativeConcurrentFixedSizeBucket.cs │ ├── NativeConcurrentHashSet`1.cs │ ├── NativeConcurrentQueue.cs │ ├── NativeConcurrentQueue`1.cs │ ├── NativeConcurrentReaderWriterLock.cs │ ├── NativeConcurrentSpinLock.cs │ ├── NativeConcurrentStack`1.cs │ ├── NativeDeque`1.cs │ ├── NativeDictionary`2.cs │ ├── NativeDisposable`1.cs │ ├── NativeDynamicMemoryPool.cs │ ├── NativeFixedSizeMemoryPool`1.cs │ ├── NativeFixedSizeQueueMemoryPool`1.cs │ ├── NativeFixedSizeStackMemoryPool`1.cs │ ├── NativeFrozenDictionary.cs │ ├── NativeFrozenDictionary`2.cs │ ├── NativeFrozenSet.cs │ ├── NativeFrozenSet`1.cs │ ├── NativeHashCode.cs │ ├── NativeHashSet`1.cs │ ├── NativeIntPtr.cs │ ├── NativeLinearMemoryPool.cs │ ├── NativeLinkedListNode.cs │ ├── NativeListBuilder`1.cs │ ├── NativeList`1.cs │ ├── NativeMemoryAllocator.cs │ ├── NativeMemoryArray`1.cs │ ├── NativeMemoryBucket.cs │ ├── NativeMemoryLinearAllocator.cs │ ├── NativeMemoryManager`1.cs │ ├── NativeMemoryPool.cs │ ├── NativeMemoryReader.cs │ ├── NativeMemoryStream.cs │ ├── NativeMemoryWriter.cs │ ├── NativeMemory`1.cs │ ├── NativeMonitorLock.cs │ ├── NativeObject`1.cs │ ├── NativeOrderedDictionary`2.cs │ ├── NativeOrderedHashSet`1.cs │ ├── NativeOrderedSparseSet`1.cs │ ├── NativePointer`1.cs │ ├── NativePriorityQueue`1.cs │ ├── NativePriorityQueue`2.cs │ ├── NativeQueue`1.cs │ ├── NativeRandom.cs │ ├── NativeReference.cs │ ├── NativeReference`1.cs │ ├── NativeRingBuffer`1.cs │ ├── NativeSlice`1.cs │ ├── NativeSortedDictionary`2.cs │ ├── NativeSortedList`1.cs │ ├── NativeSortedList`2.cs │ ├── NativeSortedSet.cs │ ├── NativeSortedSet`1.cs │ ├── NativeSparseSet`1.cs │ ├── NativeSpinWait.cs │ ├── NativeSplitAnyRange`1.cs │ ├── NativeSplitAny`1.cs │ ├── NativeSplitRange`1.cs │ ├── NativeSplit`1.cs │ ├── NativeStack`1.cs │ ├── NativeStopwatch.cs │ ├── NativeStream.cs │ ├── NativeString.cs │ ├── NativeStringBuilderExtensions.CompositeFormat.cs │ ├── NativeStringBuilderExtensions.Format.cs │ ├── NativeStringBuilderExtensions.cs │ ├── NativeStringBuilderUtf16InterpolatedStringHandler.cs │ ├── NativeStringBuilderUtf8InterpolatedStringHandler.cs │ ├── NativeStringBuilder`1.cs │ ├── NativeStringInterpolatedStringHandler.cs │ ├── NativeTempPinnedBuffer`1.cs │ ├── NativeUInt32MemoryPool.cs │ ├── NativeUInt64MemoryPool.cs │ ├── NativeUnalignedArray`1.cs │ ├── NativeValueListBuilder`1.cs │ ├── NativeXorshift32.cs │ ├── NativeXoshiro128.cs │ └── NativeXoshiro256.cs │ ├── Specialized │ └── ManagedMemoryAllocator.cs │ ├── Stackalloc │ ├── StackallocDeque`1.cs │ ├── StackallocDictionary`2.cs │ ├── StackallocFixedSizeMemoryPool`1.cs │ ├── StackallocFixedSizeQueueMemoryPool`1.cs │ ├── StackallocFixedSizeStackMemoryPool`1.cs │ ├── StackallocHashSet`1.cs │ ├── StackallocList`1.cs │ ├── StackallocMemoryStream.cs │ ├── StackallocOrderedDictionary`2.cs │ ├── StackallocOrderedHashSet`1.cs │ ├── StackallocOrderedSparseSet`1.cs │ ├── StackallocPriorityQueue`1.cs │ ├── StackallocPriorityQueue`2.cs │ ├── StackallocQueue`1.cs │ ├── StackallocRingBuffer`1.cs │ ├── StackallocSortedDictionary`2.cs │ ├── StackallocSortedList`1.cs │ ├── StackallocSortedList`2.cs │ ├── StackallocSortedSet`1.cs │ ├── StackallocSparseSet`1.cs │ └── StackallocStack`1.cs │ └── Unsafe │ ├── CustomMemoryAllocator.cs │ ├── CustomMemoryCallbacks.cs │ ├── TLSF.cs │ ├── UnsafeBitArray.cs │ ├── UnsafeChunkedDeque`1.cs │ ├── UnsafeChunkedQueue`1.cs │ ├── UnsafeChunkedStack`1.cs │ ├── UnsafeChunkedStream.cs │ ├── UnsafeConcurrentChunkedStream.cs │ ├── UnsafeConcurrentDictionary`2.cs │ ├── UnsafeConcurrentHashSet`1.cs │ ├── UnsafeConcurrentQueue`1.cs │ ├── UnsafeConcurrentReaderWriterLock.cs │ ├── UnsafeConcurrentSpinLock.cs │ ├── UnsafeConcurrentStack`1.cs │ ├── UnsafeDeque`1.cs │ ├── UnsafeDictionary`2.cs │ ├── UnsafeFixedSizeMemoryPool`1.cs │ ├── UnsafeFixedSizeQueueMemoryPool`1.cs │ ├── UnsafeFixedSizeStackMemoryPool`1.cs │ ├── UnsafeFrozenDictionary`2.cs │ ├── UnsafeFrozenSet`1.cs │ ├── UnsafeHashSet`1.cs │ ├── UnsafeLinearMemoryPool.cs │ ├── UnsafeList`1.cs │ ├── UnsafeMemoryBucket.cs │ ├── UnsafeMemoryPool.cs │ ├── UnsafeMemoryStream.cs │ ├── UnsafeOrderedDictionary`2.cs │ ├── UnsafeOrderedHashSet`1.cs │ ├── UnsafeOrderedSparseSet`1.cs │ ├── UnsafePriorityQueue`1.cs │ ├── UnsafePriorityQueue`2.cs │ ├── UnsafeQueue`1.cs │ ├── UnsafeRingBuffer`1.cs │ ├── UnsafeSortedDictionary`2.cs │ ├── UnsafeSortedList`1.cs │ ├── UnsafeSortedList`2.cs │ ├── UnsafeSortedSet`1.cs │ ├── UnsafeSparseSet`1.cs │ ├── UnsafeStack`1.cs │ ├── UnsafeUInt32MemoryPool.cs │ └── UnsafeUInt64MemoryPool.cs ├── README.md ├── Test ├── Test.csproj └── Test │ ├── Nightly │ ├── Arc.cs │ ├── ParallelHashMap.cs │ ├── RwLock.cs │ └── StateMachine.cs │ └── Program.cs └── global.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/.gitignore -------------------------------------------------------------------------------- /Benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/BenchmarkCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Benchmarks/Benchmarks/BenchmarkCompare.cs -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/BenchmarkDistinct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Benchmarks/Benchmarks/BenchmarkDistinct.cs -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/FrozenDictionaryBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Benchmarks/Benchmarks/FrozenDictionaryBenchmark.cs -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Benchmarks/Benchmarks/Program.cs -------------------------------------------------------------------------------- /Examples/Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Examples/Examples.csproj -------------------------------------------------------------------------------- /Examples/Examples/ExampleHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Examples/Examples/ExampleHashSet.cs -------------------------------------------------------------------------------- /Examples/Examples/ExampleString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Examples/Examples/ExampleString.cs -------------------------------------------------------------------------------- /Examples/Examples/IExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Examples/Examples/IExample.cs -------------------------------------------------------------------------------- /Examples/Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Examples/Examples/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeCollections.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections.sln -------------------------------------------------------------------------------- /NativeCollections/NativeCollections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections.csproj -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/BindingTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/BindingTypeAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/CustomizableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/CustomizableAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/IsAssignableToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/IsAssignableToAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/MustBeZeroedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/MustBeZeroedAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/NativeCollectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/NativeCollectionAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/StackallocCollectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/StackallocCollectionAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Attribute/UnsafeCollectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Attribute/UnsafeCollectionAttribute.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Enum/FromType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Enum/FromType.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Enum/InsertResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Enum/InsertResult.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Enum/InvalidFormatReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Enum/InvalidFormatReason.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/ArchitectureHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/ArchitectureHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/ArrayHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/ArrayHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/BinarySearchHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/BinarySearchHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/BitArrayHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/BitArrayHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/BitOperationsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/BitOperationsHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/CharHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/CharHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/EncodingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/EncodingHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/FormatHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/FormatHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/FrozenHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/FrozenHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/HashHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/HashHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/InterlockedHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/InterlockedHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/MarvinHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/MarvinHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/MathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/MathHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/RingBufferHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/RingBufferHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/SpanHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/SpanHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/ThrowHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/ThrowHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/TypeHelpers`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/TypeHelpers`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/UnsafeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/UnsafeHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Helpers/Utf8FormatHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Helpers/Utf8FormatHelpers.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeArray2`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeArray2`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeArray3`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeArray3`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeArrayPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeArrayPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeArrayReference`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeArrayReference`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeArray`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeArray`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeAtomic32`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeAtomic32`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeAtomic64`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeAtomic64`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeAtomicIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeAtomicIntPtr.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeAtomicReference`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeAtomicReference`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeAtomicUIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeAtomicUIntPtr.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeBitArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeBitArray.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeBitArraySlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeBitArraySlot.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeChunkedDeque`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeChunkedDeque`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeChunkedQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeChunkedQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeChunkedStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeChunkedStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeChunkedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeChunkedStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeCompositeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeCompositeFormat.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentChunkedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentChunkedStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentFixedSizeBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentFixedSizeBucket.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentQueue.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentReaderWriterLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentReaderWriterLock.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentSpinLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentSpinLock.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeConcurrentStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeConcurrentStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeDeque`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeDeque`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeDisposable`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeDisposable`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeDynamicMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeDynamicMemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFixedSizeMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFixedSizeMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFixedSizeQueueMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFixedSizeQueueMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFixedSizeStackMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFixedSizeStackMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFrozenDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFrozenDictionary.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFrozenDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFrozenDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFrozenSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFrozenSet.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeFrozenSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeFrozenSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeHashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeHashCode.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeIntPtr.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeLinearMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeLinearMemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeLinkedListNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeLinkedListNode.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeListBuilder`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeListBuilder`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeList`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryAllocator.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryArray`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryArray`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryBucket.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryLinearAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryLinearAllocator.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryManager`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryManager`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryReader.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemoryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemoryWriter.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMemory`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMemory`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeMonitorLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeMonitorLock.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeObject`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeObject`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeOrderedDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeOrderedDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeOrderedHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeOrderedHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeOrderedSparseSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeOrderedSparseSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativePointer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativePointer`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativePriorityQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativePriorityQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativePriorityQueue`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativePriorityQueue`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeRandom.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeReference.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeReference`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeReference`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeRingBuffer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeRingBuffer`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSlice`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSlice`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSortedDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSortedDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSortedList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSortedList`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSortedList`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSortedList`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSortedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSortedSet.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSortedSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSortedSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSparseSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSparseSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSpinWait.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSplitAnyRange`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSplitAnyRange`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSplitAny`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSplitAny`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSplitRange`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSplitRange`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeSplit`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeSplit`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStopwatch.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeString.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringBuilderExtensions.CompositeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringBuilderExtensions.CompositeFormat.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringBuilderExtensions.Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringBuilderExtensions.Format.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringBuilderExtensions.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringBuilderUtf16InterpolatedStringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringBuilderUtf16InterpolatedStringHandler.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringBuilderUtf8InterpolatedStringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringBuilderUtf8InterpolatedStringHandler.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringBuilder`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringBuilder`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeStringInterpolatedStringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeStringInterpolatedStringHandler.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeTempPinnedBuffer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeTempPinnedBuffer`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeUInt32MemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeUInt32MemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeUInt64MemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeUInt64MemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeUnalignedArray`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeUnalignedArray`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeValueListBuilder`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeValueListBuilder`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeXorshift32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeXorshift32.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeXoshiro128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeXoshiro128.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Native/NativeXoshiro256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Native/NativeXoshiro256.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Specialized/ManagedMemoryAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Specialized/ManagedMemoryAllocator.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocDeque`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocDeque`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocFixedSizeMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocFixedSizeMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocFixedSizeQueueMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocFixedSizeQueueMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocFixedSizeStackMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocFixedSizeStackMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocList`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocMemoryStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocOrderedDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocOrderedDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocOrderedHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocOrderedHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocOrderedSparseSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocOrderedSparseSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocPriorityQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocPriorityQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocPriorityQueue`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocPriorityQueue`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocRingBuffer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocRingBuffer`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocSortedDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocSortedDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocSortedList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocSortedList`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocSortedList`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocSortedList`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocSortedSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocSortedSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocSparseSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocSparseSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Stackalloc/StackallocStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Stackalloc/StackallocStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/CustomMemoryAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/CustomMemoryAllocator.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/CustomMemoryCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/CustomMemoryCallbacks.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/TLSF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/TLSF.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeBitArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeBitArray.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeChunkedDeque`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeChunkedDeque`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeChunkedQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeChunkedQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeChunkedStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeChunkedStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeChunkedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeChunkedStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentChunkedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentChunkedStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentReaderWriterLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentReaderWriterLock.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentSpinLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentSpinLock.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeConcurrentStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeDeque`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeDeque`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeFixedSizeMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeFixedSizeMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeFixedSizeQueueMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeFixedSizeQueueMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeFixedSizeStackMemoryPool`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeFixedSizeStackMemoryPool`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeFrozenDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeFrozenDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeFrozenSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeFrozenSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeLinearMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeLinearMemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeList`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeMemoryBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeMemoryBucket.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeMemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeMemoryStream.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeOrderedDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeOrderedDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeOrderedHashSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeOrderedHashSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeOrderedSparseSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeOrderedSparseSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafePriorityQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafePriorityQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafePriorityQueue`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafePriorityQueue`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeQueue`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeRingBuffer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeRingBuffer`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeSortedDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeSortedDictionary`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeSortedList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeSortedList`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeSortedList`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeSortedList`2.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeSortedSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeSortedSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeSparseSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeSparseSet`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeStack`1.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeUInt32MemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeUInt32MemoryPool.cs -------------------------------------------------------------------------------- /NativeCollections/NativeCollections/Unsafe/UnsafeUInt64MemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/NativeCollections/NativeCollections/Unsafe/UnsafeUInt64MemoryPool.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/README.md -------------------------------------------------------------------------------- /Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Test/Test.csproj -------------------------------------------------------------------------------- /Test/Test/Nightly/Arc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Test/Test/Nightly/Arc.cs -------------------------------------------------------------------------------- /Test/Test/Nightly/ParallelHashMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Test/Test/Nightly/ParallelHashMap.cs -------------------------------------------------------------------------------- /Test/Test/Nightly/RwLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Test/Test/Nightly/RwLock.cs -------------------------------------------------------------------------------- /Test/Test/Nightly/StateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Test/Test/Nightly/StateMachine.cs -------------------------------------------------------------------------------- /Test/Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/Test/Test/Program.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Molth/NativeCollections/HEAD/global.json --------------------------------------------------------------------------------