Giter Site home page Giter Site logo

ilk's Introduction

Ilk

An implementation of super type tokens (Gafter's Gadget). 

    Source: http://github.com/bigeasy/ilk
    Documentation: http://wiki.github.com/bigeasy/ilk

    Issues and Tasks: http://bigeasy.lighthouseapp.com/projects/28908-ilk

    License: The MIT License

PURPOSE

Ilk is my implementation of super type tokens, for inclusion in my projects, so
that I don't have to borrow an implementation from Guice.

Ilk.Key mapKey = new Ilk<Map<String, List<String>>() {};

assertTrue(mapKey.get(1).getKey().equals(new Ilk<List<String>>(){}.key));
assertFalse(mapKey.get(1).getKey().equals(new Ilk<List<Integer>>(){}.key));

IlkOutputStream out = new IlkOutputStream(new FileOutputStream("ilky.data"));
out.writeObject(new Ilk<List<String>>(){}, new List<String>());
out.close();

IlkInputStream in = new IlkInputStream(new FileInputSTream("ilky.data"));
List<String> strings = in.readObject(new Ilk<List<String>>(){});
in.close();

With Ilk, you do not have to use @SuppressWarnings("unchecked") in your code.
You can safely cast to a generic type.

Ilk.Pair pair = new Ilk<List<String>>() { }.pair(new ArrayList<String>());

List<String> list = pair.cast(new Ilk<List<String>>() { });

MOTIVATION

Creating a super type token to pull into projects encourages type-safe thinking.

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.