We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8aa847c + e76cb8a commit d215e96Copy full SHA for d215e96
example/example.dart
@@ -0,0 +1,6 @@
1
+import 'package:boolean_selector/boolean_selector.dart';
2
+
3
+void main(List<String> args) {
4
+ var selector = new BooleanSelector.parse("(x && y) || z");
5
+ print(selector.evaluate((variable) => args.contains(variable)));
6
+}
0 commit comments