Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 2.8 KB

README.md

File metadata and controls

62 lines (46 loc) · 2.8 KB

EO principles respected here DevOps By Rultor.com

pub license PDD status

build codecov CodeFactor Grade style: lint Hits-of-Code

Dartoos — Dart Object-Oriented Software

This package is a collection of object-oriented Dart primitives that implement classic data structures, algorithms, encoding/decoding, encryption and more. It is aimed to serve as a base framework for more specific packages.

Motivation: These data structures and algorithms have been implemented in Dart by other packages already, but there are some issues with them:

  • None of them is pure object-oriented. Indeed they do their job, but mostly through static methods, mixins, procedures, etc.
  • These packages are spread throughout the pub.dev ecosystem. This means that a user need to find different packages for basic things like encryption, encoding, or even for a plain Queue data structure.

This project is heavily inspired by Java jcabi-cactoos

Features

  • No external dependencies.
  • Object-Oriented mindset: each concept is implemented by an immutable class.
  • For easier composability and integration with the undelying Dart's sdk, most of the classes are instances of Future.

Getting started

Usage

Additional information