We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b846eb2 commit 8694090Copy full SHA for 8694090
1 file changed
src/main.rs
@@ -720,7 +720,7 @@ impl Executor {
720
});
721
}
722
723
- // Mapping
+ // Mapping a list
724
"map" => {
725
let code = self.pop_stack().get_string();
726
let vars = self.pop_stack().get_string();
@@ -740,7 +740,7 @@ impl Executor {
740
self.stack.push(Type::List(result_list));
741
742
743
- // Filtering
+ // Filtering a list value
744
"filter" => {
745
746
@@ -763,6 +763,7 @@ impl Executor {
763
764
765
766
+ // Generate value from list
767
"reduce" => {
768
769
let now = self.pop_stack().get_string();
0 commit comments