darcs-2.2.0: a distributed, interactive, smart revision control systemSource codeContentsIndex
English
Synopsis
englishNum :: Numbered n => Int -> n -> ShowS
class Numbered a where
plural :: a -> ShowS
singular :: a -> ShowS
newtype Noun = Noun String
data This = This Noun
Documentation
englishNum :: Numbered n => Int -> n -> ShowSSource
 englishNum 0 (Noun "watch") "" == "watches"
 englishNum 1 (Noun "watch") "" == "watch"
 englishNum 2 (Noun "watch") "" == "watches"
class Numbered a whereSource
Things that have a plural and singular spelling
Methods
plural :: a -> ShowSSource
singular :: a -> ShowSSource
show/hide Instances
newtype Noun Source

This only distinguishes between nouns with a final -ch, and nouns which do not. More irregular nouns will just need to have their own type

 plural (Noun "batch") "" == "batches"
 plural (Noun "bat")   "" == "bats"
 plural (Noun "mouse") "" == "mouses" -- :-(
Constructors
Noun String
show/hide Instances
data This Source
 singular This (Noun "batch") "" == "this batch"
 plural   This (Noun "batch") "" == "these batches"
Constructors
This Noun
show/hide Instances
Produced by Haddock version 2.4.2