Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 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. src/main/webapp/js/admin/moment-with-locales.min.js.map

    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 224.8K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.txt

    pkg text/template/parse, type NumberNode struct, Int64 int64
    pkg text/template/parse, type NumberNode struct, IsComplex bool
    pkg text/template/parse, type NumberNode struct, IsFloat bool
    pkg text/template/parse, type NumberNode struct, IsInt bool
    pkg text/template/parse, type NumberNode struct, IsUint bool
    pkg text/template/parse, type NumberNode struct, Text string
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top