Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Lunedi (0.41 sec)

  1. doc/go_spec.html

    and may explain why type inference fails in unusual code situations.
    But by and large these rules can be ignored when writing Go code:
    type inference is designed to mostly "work as expected",
    and the unification rules are fine-tuned accordingly.
    </p>
    
    <p>
    Type unification is controlled by a <i>matching mode</i>, which may
    be <i>exact</i> or <i>loose</i>.
    As unification recursively descends a composite type structure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/edit.go

    )
    
    type flagFunc func(string)
    
    func (f flagFunc) String() string     { return "" }
    func (f flagFunc) Set(s string) error { f(s); return nil }
    
    func init() {
    	cmdEdit.Run = runEdit // break init cycle
    
    	cmdEdit.Flag.Var(flagFunc(flagGodebug), "godebug", "")
    	cmdEdit.Flag.Var(flagFunc(flagDropGodebug), "dropgodebug", "")
    	cmdEdit.Flag.Var(flagFunc(flagRequire), "require", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top