001 /** 002 * Implements the Cold Fusion Function structkeyexists 003 */ 004 package railo.runtime.functions.arrays; 005 006 007 import railo.runtime.PageContext; 008 import railo.runtime.ext.function.Function; 009 import railo.runtime.type.Array; 010 011 public final class ArrayIsDefined implements Function { 012 public static boolean call(PageContext pc , Array array, double index) { 013 return ArrayIndexExists.call(pc, array, index); 014 } 015 }