Home | History | Annotate | Download | only in proptools

Lines Matching defs:Bool

42 func HasTag(field reflect.StructField, name, value string) bool {
53 // BoolPtr returns a pointer to a new bool containing the given value.
54 func BoolPtr(b bool) *bool {
69 // BoolDefault takes a pointer to a bool and returns the value pointed to by the pointer if it is non-nil,
71 func BoolDefault(b *bool, def bool) bool {
78 // Bool takes a pointer to a bool and returns true iff the pointer is non-nil and points to a true
80 func Bool(b *bool) bool {