We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1acb7fd commit bed9f6aCopy full SHA for bed9f6a
library/src/scala/tasty/Reflection.scala
@@ -2297,7 +2297,9 @@ trait Reflection { reflection =>
2297
trait TypeBoundsModule { this: TypeBounds.type =>
2298
def apply(low: Type, hi: Type): TypeBounds
2299
def unapply(x: TypeBounds): Option[(Type, Type)]
2300
- def minmax: TypeBounds
+ def empty: TypeBounds
2301
+ def upper(hi: Type): TypeBounds
2302
+ def lower(lo: Type): TypeBounds
2303
}
2304
2305
given TypeBoundsMethods as TypeBoundsMethods = TypeBoundsMethodsImpl
0 commit comments