Skip to content

Instantly share code, notes, and snippets.

View markrandall's full-sized avatar

markrandall

  • United Kingdom
View GitHub Profile
template <T>
class FooCollection {
private array $values;
public function get($index): T {
return $this->values[$index];
}
public function set($index, T $value) {
$this->values[$index] = T;