const gopkg.in/yaml.v2.yaml_FLOAT_TAG

11 uses

	gopkg.in/yaml.v2 (current package)
		resolve.go#L44: 		{math.NaN(), yaml_FLOAT_TAG, []string{".nan", ".NaN", ".NAN"}},
		resolve.go#L45: 		{math.Inf(+1), yaml_FLOAT_TAG, []string{".inf", ".Inf", ".INF"}},
		resolve.go#L46: 		{math.Inf(+1), yaml_FLOAT_TAG, []string{"+.inf", "+.Inf", "+.INF"}},
		resolve.go#L47: 		{math.Inf(-1), yaml_FLOAT_TAG, []string{"-.inf", "-.Inf", "-.INF"}},
		resolve.go#L78: 	case "", yaml_STR_TAG, yaml_BOOL_TAG, yaml_INT_TAG, yaml_FLOAT_TAG, yaml_NULL_TAG, yaml_TIMESTAMP_TAG:
		resolve.go#L95: 		case yaml_FLOAT_TAG:
		resolve.go#L99: 					rtag = yaml_FLOAT_TAG
		resolve.go#L103: 					rtag = yaml_FLOAT_TAG
		resolve.go#L136: 				return yaml_FLOAT_TAG, floatv
		resolve.go#L166: 					return yaml_FLOAT_TAG, floatv
		yamlh.go#L313: 	yaml_FLOAT_TAG     = "tag:yaml.org,2002:float"     // The tag !!float for float values.