'\" t .\" Copyright (c) 2025 Bruce Hill .\" All rights reserved. .\" .TH Num.isfinite 3 2025-11-29 "Tomo man-pages" .SH NAME Num.isfinite \- check for finite number .SH LIBRARY Tomo Standard Library .SH SYNOPSIS .nf .BI Num.isfinite\ :\ func(n:\ Num\ ->\ Bool) .fi .SH DESCRIPTION Checks if a number is finite. .SH ARGUMENTS .TS allbox; lb lb lbx lb l l l l. Name Type Description Default n Num The number to be checked. - .TE .SH RETURN `yes` if `n` is finite, `no` otherwise. .SH EXAMPLES .EX assert (1.0).isfinite() == yes assert Num.INF.isfinite() == no .EE .SH SEE ALSO .BR Tomo-Num (3)