annotate Paper/src/Maybe.agda.replaced @ 5:339fb67b4375

INIT rbt.agda
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Sun, 07 Nov 2021 00:51:16 +0900
parents c59202657321
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
soto <soto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 data Maybe {a} (A : Set a) : Set a where
5
339fb67b4375 INIT rbt.agda
soto <soto@cr.ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
2 just : (x : A) !$\rightarrow$! Maybe A
0
soto <soto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 nothing : Maybe A