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.
utopを呼び出しrequire "lwt.simple-top" ;;て簡単な例を試してみましたが、 operator が見つかりません>>=。
require "lwt.simple-top" ;;
>>=
これ#requireは、ライブラリ コードをトップレベルにリンクするトップレベル ディレクティブです。モジュールは開きません。したがって、中置演算子>>=andを取得するには、 orモジュール>|=を開く必要があります。後者は、名前空間汚染と見なされる可能性があるモジュールからすべての定義も取得します。Lwt.InfixLwtLwt
#require
>|=
Lwt.Infix
Lwt