Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LOR (0.43 sec)

  1. src/go/types/expr.go

    		token.QUO: allNumeric,
    		token.REM: allInteger,
    
    		token.AND:     allInteger,
    		token.OR:      allInteger,
    		token.XOR:     allInteger,
    		token.AND_NOT: allInteger,
    
    		token.LAND: allBoolean,
    		token.LOR:  allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    // (when invoked for an assignment operation where the binary expression is implicit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    }
    
    // op2tok translates syntax.Operators into token.Tokens.
    var op2tok = [...]token.Token{
    	syntax.Def:  token.ILLEGAL,
    	syntax.Not:  token.NOT,
    	syntax.Recv: token.ILLEGAL,
    
    	syntax.OrOr:   token.LOR,
    	syntax.AndAnd: token.LAND,
    
    	syntax.Eql: token.EQL,
    	syntax.Neq: token.NEQ,
    	syntax.Lss: token.LSS,
    	syntax.Leq: token.LEQ,
    	syntax.Gtr: token.GTR,
    	syntax.Geq: token.GEQ,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IsExported", Func, 13},
    		{"IsIdentifier", Func, 13},
    		{"IsKeyword", Func, 13},
    		{"LAND", Const, 0},
    		{"LBRACE", Const, 0},
    		{"LBRACK", Const, 0},
    		{"LEQ", Const, 0},
    		{"LOR", Const, 0},
    		{"LPAREN", Const, 0},
    		{"LSS", Const, 0},
    		{"Lookup", Func, 0},
    		{"LowestPrec", Const, 0},
    		{"MAP", Const, 0},
    		{"MUL", Const, 0},
    		{"MUL_ASSIGN", Const, 0},
    		{"NEQ", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top