Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for declTypes (0.11 sec)

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

    }
    
    // Decltype is the decltype operator.
    type Decltype struct {
    	Expr AST
    }
    
    func (dt *Decltype) print(ps *printState) {
    	ps.writeString("decltype")
    	if !ps.llvmStyle {
    		ps.writeString(" ")
    	}
    	ps.startScope('(')
    	ps.print(dt.Expr)
    	ps.endScope(')')
    }
    
    func (dt *Decltype) Traverse(fn func(AST) bool) {
    	if fn(dt) {
    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