path<Root, Prop, Deeper> function

KeyPath<Root, Deeper> path<Root, Prop, Deeper>(
  1. KeyPath<Root, Prop> first,
  2. KeyPath<Prop, Deeper> second
)

Implementation

KeyPath<Root, Deeper> path<Root, Prop, Deeper>(
  KeyPath<Root, Prop> first,
  KeyPath<Prop, Deeper> second,
) {
  return first.path(second);
}