Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
metropolite
/
wp-content
/
plugins
/
mycryptocheckout
/
vendor
/
bitwasp
/
buffertools
/
src
/
Buffertools
:
BufferInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace BitWasp\Buffertools; interface BufferInterface { /** * @param integer $start * @param integer|null $end * @return BufferInterface * @throws \Exception */ public function slice($start, $end = null); /** * Get the size of the buffer to be returned * * @return int */ public function getSize(); /** * Get the size of the value stored in the buffer * * @return int */ public function getInternalSize(); /** * @return string */ public function getBinary(); /** * @return string */ public function getHex(); /** * @return int|string */ public function getInt(); /** * @return \GMP */ public function getGmp(); /** * @return Buffer */ public function flip(); /** * @return bool */ public function equals(BufferInterface $other); }