请教 '||=' 的含义

请问 || 的含义我在学习用Spreadsheet::ParseExcel读取excel文件。在这个模块的CPAN页面(http://search.

请问 '||=' 的含义
我在学习用   Spreadsheet::ParseExcel   读取   excel   文件。

在这个模块的   CPAN   页面   (http://search.cpan.org/~szabgab/Spreadsheet-ParseExcel-0.32/lib/Spreadsheet/ParseExcel.pm#Worksheet)   上有个例子,其中有这样一句:
[quote]
$sheet-> {MaxRow}   ||=   $sheet-> {MinRow};
[/quote]
请问这句话是什么么意思?

谢谢   !

[解决办法]
$sheet-> {MaxRow} = $sheet-> {MaxRow} || $sheet-> {MinRow};

true || true = true
true || false = true
false || true = true
false || false = false