Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BFP (0.01 sec)

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

    type BinaryFP struct {
    	Bits int
    }
    
    func (bfp *BinaryFP) print(ps *printState) {
    	fmt.Fprintf(&ps.buf, "_Float%d", bfp.Bits)
    }
    
    func (bfp *BinaryFP) Traverse(fn func(AST) bool) {
    	fn(bfp)
    }
    
    func (bfp *BinaryFP) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(bfp) {
    		return nil
    	}
    	return fn(bfp)
    }
    
    func (bfp *BinaryFP) GoString() string {
    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