probably like this for the project I’m working on ...
# codingconventions
s
probably like this for the project I’m working on rn
Copy code
fun <T> sendFoos(
    foo: Foo,
    bar: Bar,
    baz: Baz): String? where
    T : Qux,
    T : Norf {
  return sendFoosImpl(foo, bar, baz)
}