Skip to content

Lint: Use specialized state holders to avoid autoboxing #591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

cartland
Copy link
Contributor

@cartland cartland commented Aug 15, 2025

The lint tool reported "AutoboxingStateCreation" warnings in multiple files. Using the generic 'mutableStateOf' for primitive types (Int, Float, Long) can lead to performance overhead due to autoboxing.

This commit resolves these warnings by replacing 'mutableStateOf' with its specialized, more performant counterparts ('mutableIntStateOf', 'mutableFloatStateOf', 'mutableLongStateOf') where applicable. This change improves performance by avoiding unnecessary object allocations for primitive state values."

cartland and others added 2 commits August 15, 2025 14:49
The lint tool reported "AutoboxingStateCreation" warnings in multiple files.
Using the generic `mutableStateOf` for primitive types (Int, Float, Long)
can lead to performance overhead due to autoboxing.

This commit resolves these warnings by replacing `mutableStateOf`
with its specialized, more performant counterparts (`mutableIntStateOf`,
`mutableFloatStateOf`, `mutableLongStateOf`) where applicable.
This change improves performance by avoiding unnecessary object allocations
for primitive state values.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants