Checking type of a number in Julia - isinf(), isnan(), iszero() and isone() Methods
The isinf() is an inbuilt function in julia which is used to test whether the specified number is infinite or not. Syntax: isinf(x) Parameters: x: Specified values. Returns: It returns true if the specified number is infinite else false. Example: Python # Julia program to illustrate # the use of isi