Integer Math.Divisors Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Divisors( | Returns the divisors of an integer. |
Divisors( | Returns the divisors of an integer. |
Divisors(Int32)
Returns the divisors of an integer.
public static IEnumerable<int> Divisors(
int n
)
Parameters
- n Int32
- An integer.
Return Value
IEnumerable<Int32>A sequence of the divisors of n.
Remarks
The divisors may not be returned in increasing order.
The first divisor is guaranteed to be 1, while the last
divisor is guaranteed to be n.
Divisors(Int64)
Returns the divisors of an integer.
public static IEnumerable<long> Divisors(
long n
)
Parameters
- n Int64
- An integer.
Return Value
IEnumerable<Int64>A sequence of the divisors of n.
Remarks
The divisors may not be returned in increasing order.
The first divisor is guaranteed to be 1, while the last
divisor is guaranteed to be n.