func (s DestinationTypedSetting[T]) Get(c *Collection) TypedPropertyFnWithDestinationFilter[T] {
return func(namespace string, destination string) T {
{Namespace: namespace, Destination: destination},
{Destination: destination},
{Namespace: namespace},
{},
}
return matchAndConvert(
c,
s.key,
s.def,
s.convert,
prec,
)
}
}