If I need plain string in Groovy, does using double-quoted literals make any influence on performance?
For instance:
def plainString = 'Custom string'
def gString = "Custom string"
In my understanding, plain String
should be faster because during runtime there are no searches for specific characters and substitutions.