IsPrime (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
 
(31 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This [[Intrinsic classes|intrinsic]] function returns a boolean value that indicates whether the method object value, rounded to an integer, is [http://en.wikipedia.org/wiki/Prime_number prime].
{{Template:Float:IsPrime subtitle}}
The method returns ''''True'''' if ''number'' is prime, and it returns ''''False'''' if it is not prime.


The IsPrime function is available as of version 7.3 of the [[Sirius Mods]].
The <var>IsPrime</var> [[Intrinsic classes|intrinsic]] function returns a boolean value that indicates whether the method object value, rounded to an integer, is [http://en.wikipedia.org/wiki/Prime_number prime]. The method returns <code>True</code> if <var class="term">float</var> is prime, and it returns <code>False</code> if it is not prime.
===IsPrime syntax===
  %bool = number:IsPrime
====Syntax terms====
<dl>
<dt>%bool
<dd>An enumeration object of type Boolean to contain the returned value of IsPrime.
<dt>number
<dd>A Float value.
</dl>
===Usage Notes===
*If ''number'' is a negative value or is greater than 2<sup>31</sup>-1, the request is canceled.
===Examples===
The following statement returns ''''113:isprime = True''''.
    [[Intrinsic classes#printtext|printText]] {~} = {113:isprime}
The enumeration value is printed, above, as the result of an implicit ToString method call.


===See also===
==Syntax==
[[List of intrinsic Float methods]]
{{Template:Float:IsPrime syntax}}


[[Category: Intrinsic Float methods|IsPrime function]]
===Syntax terms===
[[Category: Intrinsic methods]]
<table class="syntaxTable">
[[Category:System methods]]
<tr><th>%boolean</th>
<td>An enumeration object of type Boolean to contain the returned value of <var>IsPrime</var>. </td></tr>


<tr><th>float</th>
<td>A <var>Float</var> value.</td></tr>
</table>


==Usage notes==
<ul>
<li>If <var class="term">float</var> is a negative value or is greater than 2<sup>31</sup>-1, the request is canceled.
<li><var>IsPrime</var> is available as of <var class="product">Sirius Mods</var> Version 7.3.</ul>


<!--
==Examples==
<section begin=dpl_desc />
The following statement returns <code>113:isprime = True</code>.
Determine if number is prime
<p class="code">[[PrintText statement|printText]] {~} = {113:isprime}
<section end=dpl_desc />
</p>
-->
The enumeration value is printed, above, as the result of an implicit <var>[[Enumerations#ToString property|ToString]]</var> property call.
 
==See also==
{{Template:Float:IsPrime footer}}

Latest revision as of 23:12, 10 October 2014

Is this number prime? (Float class)


The IsPrime intrinsic function returns a boolean value that indicates whether the method object value, rounded to an integer, is prime. The method returns True if float is prime, and it returns False if it is not prime.

Syntax

%boolean = float:IsPrime

Syntax terms

%boolean An enumeration object of type Boolean to contain the returned value of IsPrime.
float A Float value.

Usage notes

  • If float is a negative value or is greater than 231-1, the request is canceled.
  • IsPrime is available as of Sirius Mods Version 7.3.

Examples

The following statement returns 113:isprime = True.

printText {~} = {113:isprime}

The enumeration value is printed, above, as the result of an implicit ToString property call.

See also