Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ExtractAdditions = func(st Stat) int {
return st.Additions
}
ExtractAdditions extract the adds section of the given stat
View Source
var ExtractCommits = func(st Stat) int {
return st.Commits
}
ExtractCommits extract the commit section of the given stat
View Source
var ExtractDeletions = func(st Stat) int {
return st.Deletions
}
ExtractDeletions extract the rms section of the given stat
View Source
var Reviews = func(st Stat) int {
return st.Reviews
}
Reviews extract the reviewed prs section of the given stat
Functions ¶
This section is empty.
Types ¶
type Stat ¶
type Stat struct {
Additions, Deletions, Commits, Reviews int
}
Stat represents an user adds, rms and commits count
type Stats ¶
type Stats struct {
// contains filtered or unexported fields
}
Stats contains the user->Stat mapping
Click to show internal directories.
Click to hide internal directories.