by shigemk2

当面は技術的なことしか書かない

F#の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

Operators.ignore<'T> 関数 (F#)