2009-04-10から1日間の記事一覧

concatMap

「ふつうのHaskellプログラミング」P71 ●concatMap は concat と map をくっつけたもの。 Prelude> :t concat concat :: [ [ a ] ] -> [a] Prelude> concat [ [1,2,3],[4,5,6 ] ] [1,2,3,4,5,6] Prelude> concat [ [ 'a','b','c' ], [ 'd','e','f' ] ] "abcd…

Ubuntu に入ってるPostgreSQL のデフォルトポートは5433

/etc/postgresql/8.3/main/postgresql.conf (snip) #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #-----------------------------------------------------------------------------…