Summery Summery
Checks for an empty diff.
Syntax Syntax
Return Return
(boolean) True if two sequences were identical.
Source Source
File: wp-includes/Text/Diff.php
function isEmpty()
{
foreach ($this->_edits as $edit) {
if (!is_a($edit, 'Text_Diff_Op_copy')) {
return false;
}
}
return true;
}