aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/type/variance.lux
blob: 4067170463b024b841ec4c3593b575f04f67a7f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(.module:
  [library
   [lux #*]])

(type: #export (Co t)
  (-> Any t))

(type: #export (Contra t)
  (-> t Any))

(type: #export (In t)
  (-> t t))