var valuesKeyRegexp …
var currentQueryParser …
type QueryParameterParser …
func PopulateQueryParameters(msg proto.Message, values url.Values, filter *utilities.DoubleArray) error { … }
type defaultQueryParser …
func (*defaultQueryParser) Parse(msg proto.Message, values url.Values, filter *utilities.DoubleArray) error { … }
func PopulateFieldFromPath(msg proto.Message, fieldPathString string, value string) error { … }
func populateFieldValueFromPath(msg proto.Message, fieldPath []string, values []string) error { … }
func fieldByProtoName(m reflect.Value, name string) (reflect.Value, *proto.Properties, error) { … }
func populateMapField(f reflect.Value, values []string, props *proto.Properties) error { … }
func populateRepeatedField(f reflect.Value, values []string, props *proto.Properties) error { … }
func populateField(f reflect.Value, value string, props *proto.Properties) error { … }
func convertEnum(value string, t reflect.Type, enumValMap map[string]int32) (reflect.Value, error) { … }
func populateFieldEnum(f reflect.Value, value string, enumValMap map[string]int32) error { … }
func populateFieldEnumRepeated(f reflect.Value, values []string, enumValMap map[string]int32) error { … }
var convFromType …