generated at
option-t
Result (Rust)Optionを提供するTypeScriptのlibrary
Tree-shakableに作られている

読み込み方
全て option-t/* の形のsubmodulesになっている
Maybe
Nullable
Result<T, E>
Option<T> (deprecated)
Undefinable
それぞれ、 option-t/**/* という形で、函数が一つずつ別のsubmoduleとして提供されている

Result<T, E>とかOption<T>をTSで使いたかったら、このlibraryを使うのが楽そうtakker

>import pathがやや気になるか?
同じこと思ったtakker
もっともそれ以外は全く気にならない


mod.ts
export * from "npm:option-t@49/maybe"; export * from "npm:option-t@49/nullable"; export * from "npm:option-t@49/undefinable"; export * from "npm:option-t@49/plain_result";

#2024-08-08 09:20:02
#2024-07-14 10:43:15
#2024-07-13 13:29:17