-
Notifications
You must be signed in to change notification settings - Fork 31
Entry with double #674
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
Entry with double #674
Conversation
| * Class representing one entry in the chart. Might contain multiple values. | ||
| * Might only contain a single value depending on the used constructor. | ||
| */ | ||
| open class EntryDouble : BaseEntry<Double>, Parcelable, Serializable { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Paget96 using a generic in in my opinion the way to go.
Then everyone can decide which kind of precision he wants to use.
The only thing is currently, it needs "just" to be done properly
|
Making this fully generic is complex because:
|
|
This one was not finished, currently you can't use |
|
I will make my non finished stuff as draft now |
close #388