コード例 #1
0
ファイル: Lodash.cs プロジェクト: MadMathMike/JsExpressions
 public static T FindLast <T>(ArrayJsExpression <T> array, JsExpression props) where T : JsExpression
 {
     return(array.CreateItem(_["findLast"].Call(array, props)));
 }
コード例 #2
0
ファイル: Lodash.cs プロジェクト: MadMathMike/JsExpressions
 public static T Find <T>(ArrayJsExpression <T> array, JsExpression criteria) where T : JsExpression
 {
     return(array.CreateItem(_["find"].Call(array, criteria)));
 }