Zusammenfassung der Ressource
MODULES - HASKELL
- Related Functions
- Data Type
- Typeclasses
- Collection
- import <module name>
- If you just need a couple of functions from a module, you can selectively import just those functions
- Also, you can also choose to import all of the functions of a module except a few select ones
- Standard library
- iI's good practice to take functions and types that work towards a similar purpose and put them in a
module.
- Specify the module name
- Keywords
- New Functions