Example #1
0
 public static FLValue *FLKeyPath_EvalOnce(byte[] specifier, FLSharedKeys *shared, FLValue *root, FLError *error)
 {
     fixed(byte *specifier_ = specifier)
     {
         return(NativeRaw.FLKeyPath_EvalOnce(new FLSlice(specifier_, (ulong)specifier.Length), shared, root, error));
     }
 }
 public FLValue *FLKeyPath_EvalOnce(FLSlice specifier, FLSharedKeys *shared, FLValue *root, FLError *error) => NativeRaw.FLKeyPath_EvalOnce(specifier, shared, root, error);