計算機科学のブログ

コードの整理とプロジェクトのビルド Haskellコードをモジュールにまとめる モジュールを使ってプログラムを複数のファイルに分割する 専用のモジュールに配置する

入門Haskellプログラミング (Will Kurt(著)、株式会社クイープ(監修、翻訳)、翔泳社)のUNIT6(コードの整理とプロジェクトのビルド)、LESSON 34(Haskellコードをモジュールにまとめる)、34.2(モジュールを使ってプログラムを複数のファイルに分割する)、改善されたisPalindromeコードを専用のモジュールに配置する、クイックチェック 34-2の解答を求めてみる。

コード

lesson/app/Main.hs

module Main (main) where

import Palindrome
  ( preprocess,
  )

s :: String
s = "A man, a plan, a canal: Panama!"

main :: IO ()
main = do
  print s
  print $ preprocess s

lesson/src/Palindrome.hs

module Palindrome
  ( preprocess,
  )
where

import Data.Char
  ( isPunctuation,
    isSpace,
    toLower,
  )

stripWhiteSpace :: String -> String
stripWhiteSpace = filter (not . isSpace)

stripPunctuation :: String -> String
stripPunctuation = filter (not . isPunctuation)

toLowerCase :: String -> String
toLowerCase = map toLower

preprocess :: String -> String
preprocess = stripWhiteSpace . stripPunctuation . toLowerCase

入出力結果(Terminal, Zsh)

% stack exec lesson-exe
"A man, a plan, a canal: Panama!"
"amanaplanacanalpanama"
%