Giter Site home page Giter Site logo

lambdax's Issues

Create DequeX

Create utility class with useful lambdas for java.lang.Deque.

Create SetX

Create utility class with useful lambdas for java.lang.Set.

Create ListX

Create utility class with useful lambdas for java.lang.List.

Create OptionalX

Create utility class with useful lambdas for java.lang.Optional.

Fix JavaDoc

public static Predicate xnor(Predicate first, Predicate second, Predicate... others)

Add null safe implementation of PredicateI and ComparablePredicatI

Add check of the arguments on null - require not null.

PredicateX.of(Box::getItem).map(null); // throws the NPE

Add check of the mapper result on null - skip mapping.

Box box = new Box(null); // without a item
PredicateX.of(Box::getItem)
    .map(Item::getName) // NPE
    .equal("some name");

Solution

Add PredicateX.ofNullable(...) with null handling.

Create PredicateX#from(Predicate)

Use:

Predicate<Box> predicate = Box::isEmpty; // ok
Predicate<Box> predicate = Box::isEmpty.and(nextPredicate); // not work
Predicate<Box> predicate = PredicateX.from(Box::isEmpty).and(nextPredicate); // work

Implementation:

<T> Predicate<T> from(Predicate<? super T> checker) {
    return (Predicate<T>) checker;
}

Refactor PredicateX

Migrate PredicateX to interface.
Create PredicateChainX.

PredicateX.chain(Box::get);
PredicateChainX.of(Box:get);
  • Implemention
  • Test
  • Documentation
  • CHANGES
  • README
  • MIGRATION

Negate methods - "not"

Add methods with negate predicate; name prefix "not".
Example: Collection#notContains.

Create MapX

Create utility class with useful lambdas for java.lang.Map.

Create PredicateX#isNull and PredicateX#notNull

Use:

boxes
    .stream()
//      .filter(box -> box.getItem().getName() == null
    .filter(PredicateX.of(Box::getItem).map(Item::getName).isNull())
//      .filter(box -> box.getItem().getName() != null
    .filter(PredicateX.of(Box::getItem).map(Item::getName).notNull())

Fix MapX#get

Fix MapX#get return type:

Function<Map<? extends K, ? extends V>, ? extends V>

Create ChainX

Use:

ChainX.of(HashMap<Integer, String>::new)
    .mutate(MapX.onlyPut(1, "one"))
    .mutate(MapX.onlyPut(2, "two"))
    .get();

Fix PredicateX#map

Describe the bug
Cannot resolve method 'map(java.util.function.Function<java.util.Map<? extends K,? extends V>,V>)'

Target
Method: PredicateX#map and MapX#get

Code

class Entry {
    private Map<Integer, String> numbers;
}

<...>

List<String> numbers = entries.stream()
    .filter(PredicateX.of(Entry::getNumbers)
                    // .map(MapX.get(1)) // doesn't work
                    // .map(m -> m.get(1)) // doesn't work
                    .map((Map<Integer, String> m) -> m.get(1)) // works
                    .nonNull())
    .collect(Collectors.toList());

Create QueueX

Create utility class with useful lambdas for java.lang.Queue.

Create mappable predicate

Create static constructor of, methods map, check, equal, less, greater, lessOrEqual, greaterOrEqual.

Use:

boxes
    .stream()
//  NPE    .filter(box -> box.getItem().getName().equals("Coca-Cola")
    .filter(PredicateX.of(Box::getItem).map(Item::getName).check("Coca-Cola"::equals))
    .collect(Collectors.toList());

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.