relude
is a custom prelude that has:
- Excellent documentation: tutorial, migration guide from
Prelude
, Haddock with examples for (almost) every function, all examples are tested withdoctest
, documenation regarding internal module structure. relude
-specific HLint rules:.hlint.yaml
- Focus on safety, convenience and efficiency.
This README contains introduction to Relude
and a tutorial on how to use it.
This tutorial has several parts:
- Philosophy and motivation.
- How to use
relude
. - Changes in
Prelude
(some gotchas). - Already known things that weren't in
Prelude
brought into scope. - New things added.
- Migration guide from
Prelude
.
This is neither a tutorial on Haskell nor tutorial on each function contained in Relude. For detailed documentation of every function together with examples and usage, see Haddock documentation.
Why another custom Prelude? β
We strive to be as productive as possible. That's why we are using Haskell. This choice of language implies
that we're restricted to use Prelude
:
implicit import of basic functions, type classes and data types. Unfortunately, the default Prelude
is considered to be not so good
due to some historical reasons.
This is why we decided to use a better tool. Luckily, Haskell provides us with the ability
to replace default Prelude
with an alternative. All we had to do is to implement a
new basic set of defaults. There already were plenty of preludes,
so we didn't plan to implement everything from scratch.
After some long, hot discussions, our team decided to base our custom prelude on
protolude
. If you're not familiar with it,
you can read a tutorial about protolude
.
The next section explains why we've made this choice and what we are willing to do.
This tutorial doesn't cover the differences from protolude
. Instead, it explains how Relude is different from regular Prelude
.
While creating and maintaining a custom prelude, we are pursuing the following goals:
- Avoid all partial functions.
We like total and exception-free functions.
You can still use some unsafe functions from
Relude.Unsafe
module, but they are not exported by default. - Use more efficient string representations.
String
type is crushingly inefficient. All our functions either try to be polymorphic over string type or useText
as the default string type. Because the community is evolving slowly, some libraries still useString
type, soString
type alias is still reexported. We recommend to avoidString
as much as you can! - Try to not reinvent the wheel. We're not trying to rebuild whole type hierarchy from scratch,
as it's done in
classy-prelude
. Instead, we reexport common and well-known things frombase
and some other libraries that are used in everyday production programming in Haskell. - Export more useful and commonly used functions. Hello, my name is Dmitry. I was
coding Haskell for 3 years but still hoogling which module
liftIO
comes from. Things likeliftIO
,ReaderT
type,MVar
-related functions have unambiguous names, are used in almost every non-trivial project, and it's really tedious to import them manually every time.
Unlike protolude
, we are:
- Not trying to be as general as possible (thus we don't export much from
GHC.Generics
). - Not trying to maintain every version of
ghc
compiler (only the latest 3) - Trying to make writing production code easier (see enhancements and fixes).
How to use Relude β
Okay, enough philosophy. If you want to just start using relude
and
explore it with the help of compiler, set everything up according to the instructions below.
If you want to get familiar with relude
internal structure, you can just
read top-level documentation for
Relude
module.
This is the recommended way to use custom prelude. It requires you to perform the following steps:
- Replace
base
dependency with corresponding version ofbase-noprelude
in your.cabal
file. - Add the following
Prelude
module to your project (both file andexposed-modules
):module Prelude ( module Relude ) where import Relude
- Optionally modify your
Prelude
to include more or less functions. Probably you want to hide something fromRelude
module. Or maybe you want to add something fromRelude.Extra.*
modules!
This is a very convenient way to add a custom prelude to your project because
you don't need to import module manually inside each file and enable the
NoImplicitPrelude
extension.
Disable the built-in prelude at the top of your file:
{-# LANGUAGE NoImplicitPrelude #-}
Or directly in your project .cabal
file, if you want to use in every module by default:
default-extensions: NoImplicitPrelude
Then add the following import to your modules:
import Relude
Gotchas β
head
,tail
,last
,init
work withNonEmpty a
instead of[a]
.- Safe analogue for
head
function:safeHead :: [a] -> Maybe a
or you can use ourviaNonEmpty
function to getMaybe a
:viaNonEmpty head :: [a] -> Maybe a
. undefined
triggers a compiler warning, which is probably not what you want. Either usethrowIO
,Except
,error
orbug
.- Multiple sorting functions are available without imports:
sortBy :: (a -> a -> Ordering) -> [a] -> [a]
: sorts list using given custom comparator.sortWith :: Ord b => (a -> b) -> [a] -> [a]
: sorts a list based on some property of its elements.sortOn :: Ord b => (a -> b) -> [a] -> [a]
: just likesortWith
, but more time-efficient if function is calculated slowly (though less space-efficient). So you should writesortOn length
(would sort elements by length) butsortWith fst
(would sort list of pairs by first element).
- Functions
sum
andproduct
are strict now, which makes them more efficient. - If you try to do something like
putStrLn "hi"
, you'll get an error message ifOverloadedStrings
is enabled β it happens because the compiler doesn't know what type to infer for the string. UseputTextLn
in this case. - Since
show
doesn't come fromShow
anymore, you can't writeShow
instances easily. - You can't call
elem
andnotElem
functions overSet
andHashSet
. These functions are forbidden for these two types because of performance reasons. error
takesText
.
Things that you were already using, but now you don't have to import them explicitly β
First of all, we reexport some generally useful modules: Control.Applicative
,
Data.Traversable
, Data.Monoid
, Control.DeepSeq
, Data.List
, and lots of others.
Just remove unneeded imports after importing Relude
(GHC should tell you which ones).
Then, some commonly used types: Map/HashMap/IntMap
, Set/HashSet/IntSet
, Seq
, Text
and ByteString
(as well as synonyms LText
and LByteString
for lazy versions).
liftIO
and MonadIO
are exported by default. A lot of IO
functions are generalized to MonadIO
.
deepseq
is exported. For instance, if you want to force deep evaluation of some value (in IO),
you can write evaluateNF a
. WHNF evaluation is possible with evaluateWHNF a
.
We also reexport big chunks of these libraries: mtl
, stm
.
Bifunctor
type class with useful instances is exported.
first
andsecond
functions apply a function to first/second part of a tuple (for tuples).bimap
takes two functions and applies them to first and second parts respectively.
We export Text
and LText
, and some functions work with Text
instead of String
β
specifically, IO functions (readFile
, putStrLn
, etc) and show
. In fact, show
is polymorphic and can produce strict or lazy Text
, String
, or ByteString
.
Also, toText/toLText/toString
can convert Text|LText|String
types to Text/LText/String
. If you want to convert to and from ByteString
use encodeUtf8/decodeUtf8
functions.
trace
, traceM
, traceShow
, etc. are available by default. GHC will warn you
if you accidentally leave them in code, however (same for undefined
).
We also have data Undefined = Undefined
(which, too, comes with warnings).
TODO: write about reexports, Bug
and Exc
pattern.
What's new? β
Finally, we can move to part describing the new cool features we bring with relude
.
-
uncons
splits a list at the first element. -
ordNub
andsortNub
are O(n log n) versions ofnub
(which is quadratic) andhashNub
andunstableNub
are almost O(n) versions ofnub
. -
(&)
β reverse application.x & f & g
instead ofg $ f $ x
is useful sometimes. -
whenM
,unlessM
,ifM
,guardM
are available and do what you expect them to do (e.g.whenM (doesFileExist "foo")
). -
Very generalized version of
concatMapM
, too, is available and does what expected. -
readMaybe
andreadEither
are likeread
but total and give eitherMaybe
orEither
with parse error. -
when(Just|Nothing|Left|Right|NotEmpty)[M][_]
let you conditionally execute something. Before:case mbX of Nothing -> return () Just x -> ... x ...
After:
whenJust mbX $ \x -> ... x ...
-
for_
for loops. There's alsoforM_
butfor_
looks a bit nicer.for_ [1..10] $ \i -> do ...
-
andM
,allM
,anyM
,orM
are monadic version of corresponding functions frombase
. -
Conversions between
Either
andMaybe
likerightToMaybe
andmaybeToLeft
with clear semantic. -
using(Reader|State)[T]
functions as aliases forflip run(Reader|State)[T]
. -
One
type class for creating singleton containers. Even monomorhpic ones likeText
. -
evaluateWHNF
andevaluateNF
functions as clearer and lifted aliases forevaluate
andevaluate . force
. -
ToPairs
type class for data types that can be converted to list of pairs (likeMap
orHashMap
orIntMap
).
Migration guide from Prelude β
In order to replace default Prelude
with relude
you should start with instructions given in
how to use relude section.
This section describes what you need to change to make your code compile with relude
.
-
Enable
-XOverloadedStrings
and-XTypeFamilies
extension by default for your project. -
Since
head
,tail
,last
andinit
work forNonEmpty
you should refactor your code in one of the multiple ways described below:- Change
[a]
toNonEmpty a
where it makes sense. - Use functions which return
Maybe
. There is theviaNonEmpty
function for this. And you can use it likeviaNonEmpty last l
.viaNonEmpty head l
issafeHead l
tail
isdrop 1
. It's almost never a good idea to usetail
fromPrelude
.
- Add
import qualified Relude.Unsafe as Unsafe
and replace function with qualified usage.
- Change
-
If you use
fromJust
or!!
you should use them fromimport qualified Relude.Unsafe as Unsafe
. -
If you use
foldr
orforM_
or similar for something likeMaybe a
orEither a b
it's recommended to replace usages of such function with monomorhpic alternatives:-
Maybe
(?:) :: Maybe a -> a -> a
fromMaybe :: a -> Maybe a -> a
maybeToList :: Maybe a -> [a]
maybeToMonoid :: Monoid m => Maybe m -> m
maybe :: b -> (a -> b) -> Maybe a -> b
whenJust :: Applicative f => Maybe a -> (a -> f ()) -> f ()
whenJustM :: Monad m => m (Maybe a) -> (a -> m ()) -> m ()
-
Either
fromLeft :: a -> Either a b -> a
fromRight :: b -> Either a b -> b
either :: (a -> c) -> (b -> c) -> Either a b -> c
whenRight_ :: Applicative f => Either l r -> (r -> f ()) -> f ()
whenRightM_ :: Monad m => m (Either l r) -> (r -> m ()) -> m ()
-
-
Forget about
String
type.- Replace
putStr
andputStrLn
withputText
andputTextLn
. - Replace
(++)
with(<>)
forString
-like types. - Try to use
fmt
library if you need to construct messages. - Use
toText/toLText/toString
functions to convert toText/LazyText/String
types. - Use
encodeUtf8/decodeUtf8
to convert to/fromByteString
.
- Replace
-
Run
hlint
using.hlint.yaml
file fromrelude
package to cleanup code and imports.