Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于 Ocaml Lwt 中此符号含义的任何建议:
>>=
请参阅 api手册:
val 绑定:'at -> ('a -> 'bt) -> 'bt bind tf 是一个线程,它首先等待线程 t 终止,然后,如果线程成功,则表现为函数 f 对 t 的返回值的应用。如果线程 t 失败,则 bind tf 也会失败,但同样例外。 t >>= f 是 bind t f 的另一种表示法。
val 绑定:'at -> ('a -> 'bt) -> 'bt
bind tf 是一个线程,它首先等待线程 t 终止,然后,如果线程成功,则表现为函数 f 对 t 的返回值的应用。如果线程 t 失败,则 bind tf 也会失败,但同样例外。
t >>= f 是 bind t f 的另一种表示法。