Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SetNoalg (0.07 sec)

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

    func (t *Type) IsShape() bool    { return t.flags&typeIsShape != 0 }
    func (t *Type) HasShape() bool   { return t.flags&typeHasShape != 0 }
    
    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) }
    
    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