by shigemk2

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

2015-09-27から1日間の記事一覧

Scalaのタプル

sites.google.com ジェネリッククラスの一種とのこと。 def tupleator(x1: Any, x2: Any, x3: Any) = (x1, x2, x3) val t = tupleator("Hello", 1, 2.3) println( "Print the whole tuple: " + t ) println( "Print the first item: " + t._1 ) println( "Pr…

MacのChromeでウィンドウを切り替える

blog.mochrom.jp Yosemiteだと、ウィンドウの切り替えはCommand + f1 どうも、Chrome特有の機能ではなく、Mac全体の機能っぽい。 support.google.com support.apple.com でも公式とかサポートとか、どこらへんにそれが書いてあるのかよくわからない。 一応機…