You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Header.get() is OK, as it directly returns a string, all other methods cause a lookup in registry, which imposes a 20% performance degradation (i.e. Header.getString() is 20% slower than Header.get() )
This was identified when benchmarking declarative, though it is valid even for imperative code, as it is quite natural to call the typed method getString() instead of the generic one get()