EV3RT CXX API Reference [English]
An RTOS-based development platform for LEGO Mindstorms EV3.
ev3cxx_utils.h
Go to the documentation of this file.
1 
7 #pragma once
8 
9 namespace ev3cxx {
10 
11 template <typename T>
12 T abs(T v) { return v >= 0 ? v : -v; }
13 
14 } // namespace ev3cxx
Definition: ev3cxx.h:35