タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

LINQとPINQに関するhonamisのブックマーク (1)

  • PINQ - Home

    What is PINQ? Based off the .NET's LINQ (Language integrated query) , PINQ unifies querying across arrays/iterators and external data sources , in a single readable and concise fluent API . A quick example The following shows an example query using the PINQ library: $youngPeopleDetails = $people -> where ( function ( $row ) { return $row [ 'age' ] <= 50 ; }) -> orderByAscending ( function ( $row )

  • 1