| http://www.w3.org/ns/prov#value | - Using startsWith() with a one character argument works, but it makes several computations while preparing to compare its prefix with another string, which is unnecessary when you just want to compare one character against another.ExampleThe following method invocation would be flagged as a violation: string.startsWith(<)because the condition could more efficiently be tested using: string.length(
|