since 8.0.0

With import directive, you can reference a static field or a static method of a class. So now you can call a tag library method without declaring it.

<?import org.zkoss.xel.fn.* ?>
...
${CommonFns.formatNumber(12345, '$ ###,###,###.00', null)}
...
${Math.sqrt(16)}
<label value="@load((Math.sqrt(16)))" />

Note that java.lang.* is imported by default.