All Projects → renggli → dart-more

renggli / dart-more

Licence: MIT license
More Dart — Literally.

Programming Languages

dart
5743 projects
HTML
75241 projects

Projects that are alternatives of or similar to dart-more

Moses
Utility library for functional programming in Lua
Stars: ✭ 541 (+567.9%)
Mutual labels:  functional, collection
table2ascii
Python library for converting lists to fancy ASCII tables for displaying in the terminal and on Discord
Stars: ✭ 31 (-61.73%)
Mutual labels:  formatter, utilities
Phobos
The standard library of the D programming language
Stars: ✭ 1,038 (+1181.48%)
Mutual labels:  functional, math
vec-la-fp
↗️ A tiny (functional) 2d linear algebra library
Stars: ✭ 21 (-74.07%)
Mutual labels:  functional, math
Prettier
Prettier is an opinionated code formatter.
Stars: ✭ 41,411 (+51024.69%)
Mutual labels:  formatter, printer
iterum
Handling iterables like lazy arrays.
Stars: ✭ 28 (-65.43%)
Mutual labels:  functional, iterable
Fxjs
Functional Extensions Library for JavaScript
Stars: ✭ 202 (+149.38%)
Mutual labels:  functional, utilities
Stdlib
✨ Standard library for JavaScript and Node.js. ✨
Stars: ✭ 2,749 (+3293.83%)
Mutual labels:  utilities, math
Plugin Php
Prettier PHP Plugin
Stars: ✭ 1,243 (+1434.57%)
Mutual labels:  formatter, printer
Exfmt
🌸 An opinionated Elixir source code formatter
Stars: ✭ 445 (+449.38%)
Mutual labels:  formatter, printer
vade-mecum-shelf
Collection of vade mecum-like utilities wrapped into one single app, built with Electron.
Stars: ✭ 33 (-59.26%)
Mutual labels:  collection, utilities
fast-cartesian
Fast cartesian product
Stars: ✭ 51 (-37.04%)
Mutual labels:  functional, iterable
Psl
PHP Standard Library - a modern, consistent, centralized, well-typed set of APIs for PHP programmers.
Stars: ✭ 329 (+306.17%)
Mutual labels:  collection, math
Sequency
⚡️ Type-safe functional sequences for processing iterable data
Stars: ✭ 294 (+262.96%)
Mutual labels:  functional, collection
tutti-quanti-shelf
Collection of miscellaneous developer-oriented utilities wrapped into one single app, built with Electron.
Stars: ✭ 30 (-62.96%)
Mutual labels:  collection, utilities
Gr8
Customizable, functional css utilities
Stars: ✭ 169 (+108.64%)
Mutual labels:  functional, utilities
js-utils
A collection of dependency-free JavaScript utilities 🔧
Stars: ✭ 22 (-72.84%)
Mutual labels:  utilities, math
Mathutilities
A collection of some of the neat math and physics tricks that I've collected over the last few years.
Stars: ✭ 2,815 (+3375.31%)
Mutual labels:  utilities, math
StyLua
An opinionated Lua code formatter
Stars: ✭ 479 (+491.36%)
Mutual labels:  formatter, printer
transmute
kind of like lodash but works with Immutable
Stars: ✭ 35 (-56.79%)
Mutual labels:  functional, utilities

More Dart — Literally

Pub Package Build Status Code Coverage GitHub Issues GitHub Forks GitHub Stars GitHub License

A collection of extensively tested extensions that make Dart a better place:

Library Description
async Extensions to Stream.
cache Caching strategies and their expiry policy.
char_matcher Character classes, their composition, and operations on strings.
collection Extensions to Iterable and new collection types.
comparator Common comparators, and extensions to perform advanced operations.
feature Information about the runtime environment.
functional Types and features known from functional programming.
graph Graph-theory objects and algorithms.
interval Continuous interval data type over a comparable type.
math Common mathematical functions.
number Number types: fraction, complex, quaternion.
printer Fluent interface to configure sophisticated formatter.
temporal Extensions to DateTime and Duration types.
tuple Generic sequence of typed values.

And there are more to come ...

This library is open source, stable and well tested. Development happens on GitHub. Feel free to report issues or create a pull-request there. General questions are best asked on StackOverflow.

The package is hosted on dart packages. Up-to-date class documentation is created with every release.

Misc

Installation

Follow the installation instructions on dart packages.

Import the all-including parent package:

import 'package:more/more.dart';

Or one or more of the specific packages into your Dart code:

import 'package:more/async.dart';
import 'package:more/cache.dart';
import 'package:more/char_matcher.dart';
import 'package:more/collection.dart';
import 'package:more/feature.dart';
import 'package:more/functional.dart';
import 'package:more/interval.dart';
import 'package:more/math.dart';
import 'package:more/number.dart';
import 'package:more/ordering.dart';
import 'package:more/printer.dart';
import 'package:more/temporal.dart';
import 'package:more/tuple.dart';

Contributing

The goal of the library is to provide a loose collection of carefully curated utilities that are not provided by the Dart standard library. All features must be well tested. New features must have significant advantages over alternatives, such as code reduction, readability improvement, speed increase, memory reduction, or improved accuracy. In case of doubt, consider filing a feature request before filing a pull request.

History

This library started in April 2013 as I was working through the puzzles of Project Euler and encountered some missing features in Dart. Over time the library grew and became more useful in many other places, so I created this reusable library.

Some parts of this library are inspired by similar APIs in Google Guava (Google core libraries for Java) and Apache Commons (a repository of reusable Java components).

License

The MIT License, see LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].