No description
Find a file
2021-01-05 22:35:20 -06:00
lib allow for exceptions to be thrown on overflow and underflow 2021-01-05 22:30:49 -06:00
test allow for exceptions to be thrown on overflow and underflow 2021-01-05 22:30:49 -06:00
.gitignore Initial commit 2020-09-30 21:21:46 -05:00
analysis_options.yaml Initial commit 2020-09-30 21:21:46 -05:00
bit_depth.iml Initial commit 2020-09-30 21:21:46 -05:00
CHANGELOG.md updated CHANGELOG.md 2021-01-05 22:35:20 -06:00
LICENSE add LICENSE 2020-09-30 21:28:59 -05:00
pubspec.yaml use c style nomenclature for types 2021-01-05 21:51:31 -06:00
README.md Initial commit 2020-09-30 21:21:46 -05:00

A library for allowing easier use of statically typed int and float types

Usage

A simple usage example:

import 'package:bit_depth/bit_depth.dart';

main() {
  var num = new Int16(27);
}