Browse Source

Added new operator handler

Alois Mahdal 11 years ago
parent
commit
ce94e72d7d
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      lib/SugarTrail/Template/Condition.pm

+ 6
- 0
lib/SugarTrail/Template/Condition.pm View File

@@ -19,6 +19,12 @@ sub _regex {
19 19
     return $a =~ m/$b/;
20 20
 }
21 21
 
22
+sub _in {
23
+    my $a = shift;
24
+    my %b = map { $_ => 1 } @_;
25
+    return exists $b{$a};
26
+}
27
+
22 28
 sub new {
23 29
     my $class   = shift;
24 30
     my $self    = {};