Refactor/histograms #203
No reviewers
Labels
No Label
bug
dependencies
discussion
documentation
duplicate
feature
good first issue
misc
performance
question
test
use case
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: kscience/kmath#203
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "refactor/histograms"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -19,1 +19,3 @@
public fun add(d: Double)
public class IntCounter : Counter<Int> {
private val innerValue = atomic(0)
Why not inline class?
@ -19,1 +19,3 @@
public fun add(d: Double)
public class IntCounter : Counter<Int> {
private val innerValue = atomic(0)
It is an interface. Atomics should not be exposed to the outside world. Also, inlining does not give anything here.