// 関数単体で呼び出して返り値を捨てるとThis expression should have type 'unit', but has type 'int'.って怒られる // パイプライン演算子|>を利用してignoreする // e.g. abc(2) => 2 |> abc // ignore(fetch())でも可 // find . -type f | xargs grep 'hogehoge' /dev/null っていう感じの着想 fetch() |> ignore
// 関数単体で呼び出して返り値を捨てるとThis expression should have type 'unit', but has type 'int'.って怒られる // パイプライン演算子|>を利用してignoreする // e.g. abc(2) => 2 |> abc // ignore(fetch())でも可 // find . -type f | xargs grep 'hogehoge' /dev/null っていう感じの着想 fetch() |> ignore