File tree Expand file tree Collapse file tree 9 files changed +24
-8
lines changed
library/src/scala/compiletime Expand file tree Collapse file tree 9 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 5050- [ ] library/src/scala/annotation/unchecked/uncheckedCaptures.scala
5151- [ ] library/src/scala/annotation/unroll.scala
5252- [x] library/src/scala/caps/package.scala
53- - [ ] library/src/scala/compiletime/ops/any.scala
54- - [ ] library/src/scala/compiletime/ops/boolean.scala
55- - [ ] library/src/scala/compiletime/ops/double.scala
56- - [ ] library/src/scala/compiletime/ops/float.scala
57- - [ ] library/src/scala/compiletime/ops/int.scala
58- - [ ] library/src/scala/compiletime/ops/long.scala
59- - [ ] library/src/scala/compiletime/ops/string.scala
60- - [ ] library/src/scala/compiletime/package.scala
53+ - [x ] library/src/scala/compiletime/ops/any.scala
54+ - [x ] library/src/scala/compiletime/ops/boolean.scala
55+ - [x ] library/src/scala/compiletime/ops/double.scala
56+ - [x ] library/src/scala/compiletime/ops/float.scala
57+ - [x ] library/src/scala/compiletime/ops/int.scala
58+ - [x ] library/src/scala/compiletime/ops/long.scala
59+ - [x ] library/src/scala/compiletime/ops/string.scala
60+ - [x ] library/src/scala/compiletime/package.scala
6161- [x] library/src/scala/compiletime/testing/Error.scala
6262- [x] library/src/scala/compiletime/testing/ErrorKind.scala
6363- [x] library/src/scala/compiletime/testing/package.scala
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object any :
57 /** Equality comparison of two singleton types.
68 * ```scala
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object boolean :
57
68 /** Negation of a `Boolean` singleton type.
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object double :
57 /** Addition of two `Double` singleton types.
68 * ```scala
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object float :
57 /** Addition of two `Float` singleton types.
68 * ```scala
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object int :
57 /** Successor of a natural number where zero is the type 0 and successors are reduced as if the definition was:
68 *
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object long :
57 /** Successor of a natural number where zero is the type 0 and successors are reduced as if the definition was:
68 *
Original file line number Diff line number Diff line change 11package scala .compiletime
22package ops
33
4+ import language .experimental .captureChecking
5+
46object string :
57 /** Concatenation of two `String` singleton types.
68 * ```scala
Original file line number Diff line number Diff line change 11package scala
22package compiletime
33
4+ import language .experimental .captureChecking
5+
46import annotation .{compileTimeOnly , experimental }
57
68/** Use this method when you have a type, do not have a value for it but want to
You can’t perform that action at this time.
0 commit comments