Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1021 Bytes

File metadata and controls

34 lines (24 loc) · 1021 Bytes

Lazy Array

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version

An array which contents can be loaded only when needed

Instalation

Install via composer

composer require harp-orm/lazy-array

Usage

$arr = new LazyArray($loader);

// This is where the loader->load() method gets executed
echo $arr[2];

License

Copyright (c) 2015, Clippings Ltd. Developed by Ivan Kerin

Under BSD-3-Clause license, read LICENSE file.