Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for f64ref (1.05 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    	position: relative;
    }
    
    @media screen and (min-width: 45rem) {
    	.main-content {
    		display: flex;
    	}
    }
    
    /* User guide navigation appears for desktops */
    @media screen and (min-width: 64rem) {
    	.docs-navigation {
    		flex: 0 0 auto;
    		width: 13.75rem;
    	}
    
    	.main-content>.appendix,
    	.main-content>.book,
    	.main-content>.chapter {
    		flex: 0 0 auto;
    		margin: 0 auto;
    	}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			n.Kind = "type"
    			needType = append(needType, n)
    			continue
    		}
    
    		if (goos == "darwin" || goos == "ios") && strings.HasSuffix(n.C, "Ref") {
    			// For FooRef, find out if FooGetTypeID exists.
    			s := n.C[:len(n.C)-3] + "GetTypeID"
    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top