Giter Club home page Giter Club logo

novel's Introduction

Hi there ๐Ÿ‘‹ ViewCount

novel's People

Contributors

umbreon22 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

novel's Issues

Consider adding version annotations to adapters

Not sure if an adapter-first versioning would be useful. Could select a different adapter instance based on version number rather than rely on versioned logic within existing adapters for backwards compatibility.

Add support for constructors with DataPen

ex.

class SomePojo {
   private final int a;
   private final String b;
   pubic SomePojo(DataPen pen) {
       this.a = pen.ints();
       this.b = pen.strings();
   }
}

Can be used in reflective readers when no other reader exists.

Expose internal adapters

Rather than keep them as internal classes, I think we should expose them and allow Novel users to include them in their instance if they choose to use them.

We'll also provide something like withDefaultAdapters() to the builder that includes them by default.

Support Streams in Pen interfaces

ex. with IntPen

    default IntPen ints(Stream<Integer> integers) {
        integers.forEach(this::ints);
        return this;
    }
    default IntPen ints(IntStream ints) {
        ints.forEach(this::ints);
        return this;
    }

Ease of accessing Proofreading interfaces

Perhaps we should extend novel as a "Proofread" novel, where all readers/writers are proofreading? Or maybe consolidate them into one single interface.
There's no easy way to access proofreading interfaces for pens and papers as of right now without rolling with your own implemenation.

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.