Arduino map() function - in global namespace (NOT in fl::) fl::map refers to the map container (red-black tree) Delegates to fl::map_range() for consistent behavior and overflow protection
| 20 | // fl::map refers to the map container (red-black tree) |
| 21 | // Delegates to fl::map_range() for consistent behavior and overflow protection |
| 22 | long map(long x, long in_min, long in_max, long out_min, long out_max) FL_NOEXCEPT { |
| 23 | return fl::map_range<long, long>(x, in_min, in_max, out_min, out_max); |
| 24 | } |
| 25 | |
| 26 | // Random number generation functions |
| 27 | long random(long min, long max) FL_NOEXCEPT { |
no outgoing calls
no test coverage detected