2021-01-01から1ヶ月間の記事一覧

The Four-Way Test

4方向のテスト(The Four-Way Test) The Four-Way Testはロータリー会員の行動規範です。 1. Is it the truth?2. Is it fair to all concerned? 3. Will it build goodwill and better friendships?4. Will it be beneficial to all concerned? 日本語に訳す…

xargsのおさらい

xargsは便利なのですが、年に数回使うかなので忘れがち。 xargsで実行されたコマンドを表示したい option t をつける % seq 1 3 | xargs -n 1 -t echo echo 1 // 実行した処理 1 echo 2 // 実行した処理 2 echo 3 // 実行した処理 3

matchで型判定がおかしいのはコンパイルのせいで、型タグで解決する

match が意図した挙動にならない 突然ですが下記プログラムの実行結果は何になるでしょうか? case class Robot() val robo = new Robot robo match { case _: Robot => println("Robot!") case l: List[String] => println(s"List String! $l") case l: Lis…