Class SpanExtensions
    Public
    
    
    
    Public Static Methods
        
                AsUnsafeReadOnlySpan<T>
        
                (arr)
    
                    
                    Converts a NativeArray to a span, assuming it will only be read.
                        Public
                            Static
                    
                
        
                AsUnsafeSpan<T>
        
                (buffer)
    
                    
                    Converts an UnsafeAppendBuffer to a span.
                        Public
                            Static
                    
                
        
                AsUnsafeSpan<T>
        
                (list)
    
                    
                    Converts a NativeList to a span.
                        Public
                            Static
                    
                
        
                AsUnsafeSpan<T>
        
                (arr)
    
                    
                    Converts a NativeArray to a span.
                        Public
                            Static
                    
                
        
                AsUnsafeSpan<T>
        
                (arr)
    
                    
                    Converts an UnsafeList to a span.
                        Public
                            Static
                    
                
        
                AsUnsafeSpan<T>
        
                (slice)
    
                    
                    Converts a NativeSlice to a span.
                        Public
                            Static
                    
                
        
                Contains<T>
        
                (span, value)
    
                    
                    Returns true if the value exists in the span.
                        Public
                            Static
                    
                
        
                CopyFrom<T>
        
                (span, array)
    
                    
                    Copies the contents of a NativeArray to this span.
                        Public
                            Static
                    
                
        
                CopyFrom<T>
        
                (span, array)
    
                    
                    Copies the contents of an array to this span.
                        Public
                            Static
                    
                
        
                IndexOf<T>
        
                (span, value)
    
                    
                    Returns the index of the first occurrence of a value in the span.
                        Public
                            Static
                    
                
        
                Sort<T>
        
                (span)
    
                    
                    Sorts the span in ascending order.
                        Public
                            Static