Guest User

Untitled

a guest
Jun 28th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     static public function isArrayIn<T>(a:Array<T>, a2:Array<T>):Bool
  2.     {
  3.         for (i in a)
  4.         {
  5.             for (j in a2)
  6.             {
  7.                 if (i == elem)
  8.                     return true;
  9.             }
  10.         }
  11.  
  12.         return false;
  13.     }
Add Comment
Please, Sign In to add comment