Browse Source

Added new operator handler

Alois Mahdal 12 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
     return $a =~ m/$b/;
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
 sub new {
28
 sub new {
23
     my $class   = shift;
29
     my $class   = shift;
24
     my $self    = {};
30
     my $self    = {};