-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocroot.txt
29 lines (17 loc) · 883 Bytes
/
docroot.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'''ScalaCraft Domain''' is a collection of case classes covering a variety of common data types.
The data types are split across two variations,
- Constrained
- Unconstrained
Unconstrained versions of a data type generally have few restrictions imposed. This
is useful for capturing data that may require further validation before it can be trusted.
In contrast constrained versions enforce checks appropriate for the data type prior to construction
which means instances can be relied on to have a known level of correctness.
For example an unconstrained `IP6Address` can have any number of fields while a constrained `IP6Address`
will always have eight fields.
----
==Binary==
Data types related to binary representations of numbers.
==Country==
Data types related to coding schemes for countries.
==Net==
Data types related to networking.