Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setSecure (0.1 sec)

  1. src/cmd/compile/internal/types/type.go

    func (t *Type) SetNotInHeap(b bool)  { t.flags.set(typeNotInHeap, b) }
    func (t *Type) SetNoalg(b bool)      { t.flags.set(typeNoalg, b) }
    func (t *Type) SetDeferwidth(b bool) { t.flags.set(typeDeferwidth, b) }
    func (t *Type) SetRecur(b bool)      { t.flags.set(typeRecur, b) }
    
    // Should always do SetHasShape(true) when doing SetIsShape(true).
    func (t *Type) SetIsShape(b bool)  { t.flags.set(typeIsShape, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top