-
Notifications
You must be signed in to change notification settings - Fork 1
/
datatypes.go
20 lines (19 loc) · 925 Bytes
/
datatypes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Package datatypes is a set of packages that provides many tools which helps you treating some complex structures and primitives types.
//
// The following packages are distributed under datatypes:
// @datatypes/collection : Provides a new single-value list struct simplifying the iteration over it
// @datatypes/dictionary : Provides a new object type which allows to treat them like <Key,Value> list
// @datatypes/generic : Packages which includes some functionalities to treat 'generic' objects
// @datatypes/string : Simple package which encapsulates some basic operations over strings
package datatypes
// Unused imports help docs.
import (
// collection package
_ "github.com/jaimelopez/datatypes/collection"
// dictionary package
_ "github.com/jaimelopez/datatypes/dictionary"
// generic package
_ "github.com/jaimelopez/datatypes/generic"
// string package
_ "github.com/jaimelopez/datatypes/string"
)