Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 659 Bytes

File metadata and controls

25 lines (15 loc) · 659 Bytes

Get Maximum Number

Get Maximum Number

Overview

Gets maximum number from a list of numbers. Scans the entire list and returns the largest value found.

Parameters

1. numbers (LIST)

  • Label: List of numbers
  • Description: The list of numbers to scan for the maximum value.
  • Required: Yes
  • Default: None
  • Constraints: Each item must be a Number

Output

Returns a NUMBER containing the largest number from the input list.

Exceptions

Throws BotCommandException when the input list is empty, or on invalid input or internal failure.