Function SlabAllocator.Allocate
        
                Allocate
        
                (NativeList<T> values)
    
            
            Allocates an array big enough to fit the given values and copies them to the new allocation.
                Public
            
        
        
                Allocate
        
                (System.Collections.Generic.List<T> values)
    
            
            Allocates an array big enough to fit the given values and copies them to the new allocation.
                Public
            
        
        
                Allocate
        
                (int nElements)
    
            
            Allocates an array of type T with length nElements.
                Public