Introduction
Getting Started
Methods
Determine if the string is empty.
Twine\Str::isEmpty() : bool
$string = new Twine\Str(''); $string->isEmpty(); // Returns true
$string = new Twine\Str('john pinkerton'); $string->isEmpty(); // Returns false