文件名称:tuple.dart:提供元组数据结构的库
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-25 23:14:25
Dart
用法示例 const t = Tuple2 < String> ( 'a' , 10 ); print (t.item1); // prints 'a' print (t.item2); // prints '10' const t1 = Tuple2 < String> ( 'a' , 10 ); final t2 = t1. withItem1 ( 'c' ); // t2 is a new [Tuple2] object with item1 is 'c' and item2 is 10.
【文件预览】:
tuple.dart-master
----.gitignore(84B)
----pubspec.yaml(237B)
----LICENSE(1KB)
----CHANGELOG.md(743B)
----.github()
--------workflows()
----README.md(434B)
----lib()
--------tuple.dart(14KB)
----AUTHORS(287B)
----test()
--------tuple_test.dart(28KB)
----analysis_options.yaml(2KB)