Copyright 2016 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Package optional provides versions of primitive types that can be nil. These are useful in methods that update some of an API object's fields.
package optional

import (
	
	
	
)

Bool is either a bool or nil.
	Bool interface{}
String is either a string or nil.
	String interface{}
Int is either an int or nil.
	Int interface{}
Uint is either a uint or nil.
	Uint interface{}
Float64 is either a float64 or nil.
	Float64 interface{}
Duration is either a time.Duration or nil.
	Duration interface{}
)
ToBool returns its argument as a bool. It panics if its argument is nil or not a bool.
func ( Bool) bool {
	,  := .(bool)
	if ! {
		doPanic("Bool", )
	}
	return 
}
ToString returns its argument as a string. It panics if its argument is nil or not a string.
func ( String) string {
	,  := .(string)
	if ! {
		doPanic("String", )
	}
	return 
}
ToInt returns its argument as an int. It panics if its argument is nil or not an int.
func ( Int) int {
	,  := .(int)
	if ! {
		doPanic("Int", )
	}
	return 
}
ToUint returns its argument as a uint. It panics if its argument is nil or not a uint.
func ( Uint) uint {
	,  := .(uint)
	if ! {
		doPanic("Uint", )
	}
	return 
}
ToFloat64 returns its argument as a float64. It panics if its argument is nil or not a float64.
func ( Float64) float64 {
	,  := .(float64)
	if ! {
		doPanic("Float64", )
	}
	return 
}
ToDuration returns its argument as a time.Duration. It panics if its argument is nil or not a time.Duration.
func ( Duration) time.Duration {
	,  := .(time.Duration)
	if ! {
		doPanic("Duration", )
	}
	return 
}

func ( string,  interface{}) {
	panic(fmt.Sprintf("optional.%s value should be %s, got %T", , strings.ToLower(), ))