← Back
Editing: Extractor.php
<?php namespace Rubix\ML\Extractors; use IteratorAggregate; /** * Extractor * * @category Machine Learning * @package Rubix/ML * @author Andrew DalPino * * @extends IteratorAggregate<int,array> */ interface Extractor extends IteratorAggregate { // }
Save File
Cancel