mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-27 07:26:18 +00:00
6 lines
170 B
C#
6 lines
170 B
C#
namespace TUI.Engine.Rendering;
|
|
|
|
public static class IntegerExtension
|
|
{
|
|
public static int Max(this int value, int maxValue) => value <= maxValue ? value : maxValue;
|
|
} |