Reputation: 3730
If I have two functions f
and g
, in Haskell I can compose them by writing g.f
. How do I do the same thing in Lean 4?
Upvotes: 2
Views: 927
Reputation: 22814
The symbol in Lean is the unicode ∘
, which is notation for Function.comp
.
Upvotes: 5