13 lines
325 B
Dart
13 lines
325 B
Dart
library sprintf;
|
|
|
|
import 'dart:math';
|
|
|
|
part 'src/formatters/Formatter.dart';
|
|
part 'src/formatters/int_formatter.dart';
|
|
part 'src/formatters/float_formatter.dart';
|
|
part 'src/formatters/string_formatter.dart';
|
|
part 'src/sprintf_impl.dart';
|
|
|
|
//typedef SPrintF = String Function(String fmt, args);
|
|
|
|
var sprintf = PrintFormat();
|