Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asFloat (0.07 sec)

  1. internal/s3select/jstream/decoder.go

    	var (
    		c       = d.cur()
    		n       float64
    		isFloat bool
    	)
    
    	// digits first
    	switch {
    	case c == '0':
    		d.scratch.add(c)
    		c = d.next()
    	case '1' <= c && c <= '9':
    		for ; c >= '0' && c <= '9'; c = d.next() {
    			n = 10*n + float64(c-'0')
    			d.scratch.add(c)
    		}
    	}
    
    	// . followed by 1 or more digits
    	if c == '.' {
    		isFloat = true
    		d.scratch.add(c)
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. api/go1.5.txt

    pkg go/types, const IsComplex = 16
    pkg go/types, const IsComplex BasicInfo
    pkg go/types, const IsConstType = 59
    pkg go/types, const IsConstType BasicInfo
    pkg go/types, const IsFloat = 8
    pkg go/types, const IsFloat BasicInfo
    pkg go/types, const IsInteger = 2
    pkg go/types, const IsInteger BasicInfo
    pkg go/types, const IsNumeric = 26
    pkg go/types, const IsNumeric BasicInfo
    pkg go/types, const IsOrdered = 42
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
Back to top