Class NativeArrayExtensions
    Public
    
    Helpers for scheduling simple NativeArray jobs.
Public Static Methods
        
                BitwiseAndWith
        
                (self, other)
    
                    
                    this[i] &= other[i]
                        Public
                            Static
                    
                
        
                CopyToJob<T>
        
                (from, to)
    
                    
                    to[i] = from[i]
                        Public
                            Static
                    
                
        
                MemSet<T>
        
                (self, value)
    
                    
                    this[i] = value
                        Public
                            Static