function_types 0.1.0 copy "function_types: ^0.1.0" to clipboard
function_types: ^0.1.0 copied to clipboard

Defines the function types with different arities via `typedefs`.

function_types #

Defines the function types with different arities via typedefs.

Version: 0.1.0

import 'package:function_types/function_types.dart';

void main() {
  Func2<int, int, int> mul = (int a, int b) => a * b;
  print(mul(3, 2));

  add = (int a, int b) => a + b;
  print(add(3, 2));
}

Func2<int, int, int> add;
1
likes
110
pub points
69%
popularity

Publisher

unverified uploader

Defines the function types with different arities via `typedefs`.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

More

Packages that depend on function_types