Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList
CSSList::splice
Splices the list of contents.
Method of the class: CSSList{}
No Hooks.
Returns
null. Nothing (null).
Usage
$CSSList = new CSSList(); $CSSList->splice( $iOffset, $iLength, $mReplacement );
- $iOffset(int) (required)
- .
- $iLength(int)
- .
Default:null - $mReplacement
- .
Default:null
CSSList::splice() CSSList::splice code WC 10.4.3
public function splice($iOffset, $iLength = null, $mReplacement = null)
{
array_splice($this->aContents, $iOffset, $iLength, $mReplacement);
}