Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for VectorType (0.14 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		bt.Size.goString(indent+2, "Size: "))
    }
    
    // VectorType is a vector type.
    type VectorType struct {
    	Dimension AST
    	Base      AST
    }
    
    func (vt *VectorType) print(ps *printState) {
    	ps.inner = append(ps.inner, vt)
    	ps.print(vt.Base)
    	if len(ps.inner) > 0 {
    		ps.printOneInner(nil)
    	}
    }
    
    func (vt *VectorType) printInner(ps *printState) {
    	end := byte(')')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top