GithubHelp home page GithubHelp logo

ezhangle / type_plus Goto Github PK

View Code? Open in Web Editor NEW

This project forked from schultek/type_plus

0.0 1.0 0.0 62 KB

Give your types superpowers and spice up your generics.

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

License: GNU General Public License v3.0

Dart 100.00%

type_plus's Introduction

Type Plus

Give your types superpowers and spice up your generics. Make types great again.

type_plus is a utility package to bring some advanced capabilities to type variables and generic type arguments With type_plus you can easily deconstruct any type variable or generic type argument.

Getting started

First you have to register all types you want to use later on. It makes sense to do this early on in the main() method of your dart program.

You only need to register custom types. All primitive and default dart types (String, int, ..., List, Map, ...) are already registered by default.

For basic, non-generic types you can do the following:

TypePlus.add<MyClass>();

For generic types, you have to specify a type factory. This is a special kind of function with the following syntax:

class MyClass<A, B> {}

void main() {
  TypePlus.addFactory(<A, B>(f) => f<MyClass<A, B>>());
}

As you can see, the type factory function is a generic function that takes as many type arguments (A, B) as your target class defines. Then you have to call f with your generic type.

After that, whenever you have a generic type argument or type variable, you can use the following properties on it:

void myGenericFunction<T>() {
  String name = T.name; // the full name of the type
  String id = T.id; // a unique id of the type
    
  Type base = T.base; // the base type of a generic type
  List<Type> args = T.args; // the type arguments of a generic type
}

Read on for a more detailed explanation of the available properties or take a look at the example.

Working with types

There are two ways you can get an instance of a Type in dart:

  1. Generic type argument
    This can either come from a generic class or generic function.

    class MyClass<T> {
      String get name => T.name;
    }
    // or
    void myFunction<T>() {
      String name = T.name;
    }
  2. Type variable
    Types can also be used as variables.

    Prior to Dart 2.15 when using generic types you have to use the typeOf<T>() helper function

    void main() {
      Type a = int;
      Type b = List<int>; // for dart < 2.15 instead do typeOf<List<int>>()
      
      String aName = a.name;
      String bName = b.name;
    
      // or use in expressions wrapped in ()
      print((MyClass<String>).name);
    }

Type decomposition

With this package, you can decompose a generic type into its type components. Let's say we have the type Map<String, int>, then:

  • the decomposed base type would be Map (or more concrete Map<dynamic, dynamic> because of how darts type system works) and
  • the decomposed type arguments would be String and int.
void main() {
  var type = Map<String, int>;
  
  String name = T.name; // = "Map<String, int>"
  
  Type base = T.base; // = Map
  List<Type> args = T.args; // = [String, int]
}

Generic invocation

Normally in dart, a generic type argument can only be provided statically. This means you cannot invoke a generic method when you only have a type variable.

With this package however, you can call a generic method and provide type variables for the generic arguments:

void printType<T>() {
  print(T.name);
}

void main() {
  var type = typeOf<Map<String, int>>();
  
  // prints: "Map<String, int>"
  printType.callWith(typeArguments: [type]);
  
  // prints: "String"
  printType.callWith(typeArguments: [type.args.first]);
}

Type IDs

With type_plus, every type has a unique id.

Additionally to identifying a type, you can use ids to construct a generic type from a string:

void main() {
  Type a = List;
  Type b = int;
  
  Type newType = TypePlus.fromId('${a.id}<${b.id}>');
  assert(newType.base == a);
  assert(newType.args.first == b);
}

When registering a type, you can provide a custom id to be used:

void main() {
  TypePlus.add<MyClass>(id: 'CoolId');
  
  Type myType = TypePlus.fromId('CoolId');
  assert(myType == MyClass);
}

Type inheritance

When dealing with object variables, there exists the is operator for checking the inheritance of an object. However there exists nothing like this for types.

With type_plus, you can do

  • typeA.implements(typeB) and
  • typeB.implementedBy(typeA)

to check the inheritance of types.

In order for this to work, you have to explicitly set the supertypes of any type when registering it. This includes any extends, implements and mixins.

class MyClass extends List<int> {}

void main() {
  var listType = List<int>;
  
  TypePlus.add<MyClass>(superTypes: [listType]);
  
  var myType = MyClass;
  
  assert(myType.implements(listType));
  assert(listType.implementedBy(myType));
  
  assert(!myType.implements(List)); // needs to be the full specified type
} 

type_plus's People

Contributors

schultek avatar

Watchers

 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.