GithubHelp home page GithubHelp logo

tchigher / dartx Goto Github PK

View Code? Open in Web Editor NEW

This project forked from simc/dartx

0.0 0.0 0.0 147 KB

Superpowers for Dart. Collection of useful static extension methods.

Home Page: https://pub.dev/packages/dartx

License: Apache License 2.0

Dart 100.00%

dartx's Introduction

Dart CI Codecov dartx flutterx

If you miss an extension, please open an issue or pull request

Resources:

On this page you can find some of the extensions. Take a look at the docs to see all of them.

Getting started ๐ŸŽ‰

Add the following to you pubspec.yaml and replace [version] with the latest version:

dependencies:
  dartx: ^[version]

After you import the library, you can use the extensions.

import 'package:dartx/dartx.dart';

var slice = [1, 2, 3, 4, 5].slice(1, -2); // [2, 3]

Iterable

slice()

Returns elements at indices between start (inclusive) and end (inclusive).

var list = [0, 1, 2, 3, 4, 5];
var last = list.slice(-1); // [5]
var lastHalf = list.slice(3); // [3, 4, 5]
var allButFirstAndLast = list.slice(1, -2); // [1, 2, 3, 4]

sortedBy() & thenBy()

Sort lists by multiple properties.

var dogs = [
  Dog(name: "Tom", age: 3),
  Dog(name: "Charlie", age: 7),
  Dog(name: "Bark", age: 1),
  Dog(name: "Cookie", age: 4),
  Dog(name: "Charlie", age: 2),
];

var sorted = dogs
    .sortedBy((dog) => dog.name)
    .thenByDescending((dog) => dog.age);
// Bark, Cookie, Charlie (7), Charlie (2), Tom

distinctBy()

Get distinct elements from a list.

var list = ['this', 'is', 'a', 'test'];
var distinctByLength = list.distinctBy((it) => it.length); // ['this', 'is', 'a']

flatten()

Get a new lazy Iterable of all elements from all collections in a collection.

var nestedList = [[1, 2, 3], [4, 5, 6]];
var flattened = nestedList.flatten(); // [1, 2, 3, 4, 5, 6]

String

chars

Get a list of single character strings from a string. Supports emojis.

var chars = 'family๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ'.chars; // ['f', 'a', 'm', 'i', 'l', 'y', '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ']

isBlank()

Returns true if this string is empty or consists solely of whitespace characters.

var notBlank = '   .'.isBlank; // false
var blank = '  '.isBlank; // true

toIntOrNull()

Parses the string as an ineger or returns null if it is not a number.

var number = '12345'.toIntOrNull(); // 12345
var notANumber = '123-45'.toIntOrNull(); // null

Function

invoke()

Executes a function. This is very useful for null checks.

var func = (String value) {
  print(value);
}

func?.invoke('hello world');

partial(), partial2() ...

Applies some of the required arguments to a function and returns a function which takes the remaining arguments.

void greet(String firstName, String lastName) {
  print('Hi $firstName $lastName!');
}

var greetStark = greet.partial('Stark');
greetStark('Sansa'); // Hi Sansa Stark!
greetStark('Tony'); // Hi Tony Stark!

File

name

Get the name and extension of a file.

var file = File('some/path/testFile.dart');
print(file.name); // testFile.dart
print(file.nameWithoutExtension); // testFile

appendText()

Append text to a file.

await File('someFile.json').appendText('{test: true}');

isWithin()

Checks if a file is inside a directory.

var dir = Directory('some/path');
File('some/path/file.dart').isWithin(dir); // true

License

Copyright 2019 Simon Leier

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

dartx's People

Contributors

passsy avatar simc avatar vitaly-v avatar xsahil03x avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.