mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
math: add a pure V math.mathutil, with generic min, max and abs functions (#9176), and use it consistently
This commit is contained in:
@@ -254,9 +254,3 @@ pub fn (mut ctx Context) horizontal_separator(y int) {
|
||||
ctx.set_cursor_position(0, y)
|
||||
ctx.write(strings.repeat(/* `⎽` */`-`, ctx.window_width))
|
||||
}
|
||||
|
||||
|
||||
[inline]
|
||||
fn abs(a int) int {
|
||||
return if a < 0 { -a } else { a }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user