doldol: Flag packer & handler for flaggable data

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Please see the README on GitHub at https://github.com/QuietJoon/doldol#readme


[Skip to Readme]

Properties

Versions 0.4.1.0, 0.4.1.0, 0.4.1.1, 0.4.1.2
Change log ChangeLog.md
Dependencies base (>=4.7 && <5) [details]
License BSD-3-Clause
Copyright 2017-2019 YongJoon Joe
Author YongJoon Joe
Maintainer developer+doldol@quietjoon.net
Category Data
Home page https://github.com/QuietJoon/doldol/
Bug tracker https://github.com/QuietJoon/doldol/issues
Source repo head: git clone https://github.com/QuietJoon/doldol
Uploaded by yongjoon at 2019-07-21T13:33:32Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for doldol-0.4.1.0

[back to package description]

doldol

doldol packs multiple flaggable data in a Flag value, and checks its flags by cheap operators.

In the current version, doldol will handle Enum e in a list only.

The name

doldol comes from Korean word 돌돌 which is a mimetic presenting roll up fabrics or something like flags.

Gap analysis

EnumSet

EnumSet is good library, but only works with List (ex. toEnum). I also need List interface only. However, next version of my simulation project needs to support Traversal class. Therefore, I keep to develop this. Of course, you can use EnumSet with fromList or etc., but when you consider performance seriously, let think one more time.