Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/master
/
.
/
docs
/
bugpattern
/
LambdaFunctionalInterface.md
blob: e4c895efdff4e786578ad357870c8fa8a0ccd90e [
file
] [
view
] [
edit
]
Prefer
specialized functional
interface
types
for
primitives
,
for
example
`IntToLongFunction`
instead of
`Function<Integer, Long>`
,
to avoid boxing
overhead
.