Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HasAll (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    	return s
    }
    
    // Has returns true if and only if item is contained in the set.
    func (s Set[T]) Has(item T) bool {
    	_, contained := s[item]
    	return contained
    }
    
    // HasAll returns true if and only if all items are contained in the set.
    func (s Set[T]) HasAll(items ...T) bool {
    	for _, item := range items {
    		if !s.Has(item) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/a.out.go

    	AMULHU
    	AMULW
    	ANEGD
    	ANEGF
    
    	ANEGW
    	ANEGV
    
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    	ASUBU
    	ASUBW
    	ADBAR
    	ASYSCALL
    
    	ATEQ
    	ATNE
    
    	AWORD
    
    	AXOR
    
    	AMASKEQZ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top