Standard unicode operators in purescript

Looking at this:

I see that unicode support in purescript for example

id :: ∀ a. a -> a

Is there a list of default operators somewhere?

+4
source share
1 answer

The available default characters are only those that are part of the syntax:

  • ( forall) for types
  • ( ::) for type annotations
  • ( ->) for function types and cases
  • ( <-) for dobinds
  • ( =>) for class constraints
  • ( <=) for the consequences of the superclass

, , , SlamData.

+6

Source: https://habr.com/ru/post/1672503/


All Articles