ソースを参照

Added new operator handler

Alois Mahdal 11 年 前
コミット
ce94e72d7d
共有1 個のファイルを変更した6 個の追加0 個の削除を含む
  1. 6
    0
      lib/SugarTrail/Template/Condition.pm

+ 6
- 0
lib/SugarTrail/Template/Condition.pm ファイルの表示

@@ -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    = {};