mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 16:51:51 +03:00
22 lines
521 B
Plaintext
22 lines
521 B
Plaintext
pt.x
|
|
pt .x
|
|
pt.x + pt.y
|
|
(Main.pt).x
|
|
(MkPoint pt.y pt.x).y
|
|
map (.x) [MkPoint 1.1 2.5, MkPoint 4.2 6.3]
|
|
map .x [MkPoint 1 2, MkPoint 3 4]
|
|
map (.topLeft.y) [rect, rect]
|
|
rect.topLeft.x + rect.bottomRight.y
|
|
rect.(x . topLeft) + rect.(y . bottomRight)
|
|
x rect.topLeft + y rect.bottomRight
|
|
rect.(Rect.topLeft)
|
|
Main.Point.x pt
|
|
Point.x pt
|
|
(x) pt
|
|
x pt
|
|
(record { topLeft.x = 3 } rect).topLeft.x
|
|
(record { topLeft.x $= (+1) } rect).topLeft.x
|
|
(record { topLeft->x = 3 } rect).topLeft.x
|
|
(record { topLeft->x $= (+1) } rect).topLeft.x
|
|
:q
|