3 回答

TA貢獻1827條經驗 獲得超8個贊
這是我的發音:
>> =綁定
>>然后
*>然后
->到 a- > b:a到b
<-綁定 (因為它對>> =無效)
<$>(f)地圖
<$ map-replace by 0 <$ f:“ f map-replace by 0”
<*> ap(ply) (與Control.Monad.ap相同)
$ (無,與“” [空白] )
。管道連接到 。b:“ b管道到a”
!! 指數
!索引/嚴格 一個!b:“ a索引b”,foo!x:foo嚴格x
<|>或/可選 expr <|> term:“ expr或term”
++ concat /加號/附加
[]空清單
:缺點
::類型/作為 fx :: Int:類型Int的fx
\ lambda
@ as go ll @(l:ls):ll as l cons ls?
懶惰 go?(a,b):懶散一對a,b

TA貢獻1868條經驗 獲得超4個贊
| sym | pronunciation |
|------|--------------------------------------------------|
| | | "such that" |
| <- | "is drawn from" |
| = | "is defined to be" / "is defined as" |
| :: | "has type" / "of type" / "is of type" |
| -> | "a function that takes ... and returns a ..." / |
| | "function that maps" / |
| | "is a function from" / |
| | "to" |
| $ | "apply" |
| _ | "whatever" |
| !! | "index" |
| ++ | "concat" |
| [] | "empty list" |
| : | "cons" |
| \ | "lambda" |
| => | "implies" / "then" |
| *> | "then" |
| <$> | "fmap" / "dollar cyclops" |
| <$ | "map-replace by" |
| <*> | "ap" / "star cyclops" |
| . | "pipe to" / "compose" / "dot" |
| <|> | "or" |
| @ | "as" |
| ~ | "lazy" |
| <=< | "left fish" |
添加回答
舉報