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 bind : 'at -> ('a -> 'bt) -> 'bt bind tf は、最初にスレッド t が終了するのを待ち、スレッドが成功すると、関数 f を t の戻り値に適用したものとして動作するスレッドです。スレッド t が失敗すると、bind tf も失敗しますが、同じ例外があります。 t >>= f は bind t f の代替表記です。
val bind : 'at -> ('a -> 'bt) -> 'bt
bind tf は、最初にスレッド t が終了するのを待ち、スレッドが成功すると、関数 f を t の戻り値に適用したものとして動作するスレッドです。スレッド t が失敗すると、bind tf も失敗しますが、同じ例外があります。
t >>= f は bind t f の代替表記です。