<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<?xml-stylesheet href="./_c74_ref.xsl" type="text/xsl"?>

<!--This is an automatically generated file. DO NOT EDIT THIS FILE DIRECTLY. Rather, use the _ref.xml files found in the 'edits' folder.-->
<c74object name="&gt;=" module="max" category="Math">
	<digest>
		Compare numbers for greater than or equal to condition
	</digest>
	<description>
		Compares two values to see if one value is greater than or equal to a second. Outputs a 1 if the number is greater than or equal to the comparison-number or 0 if it is less.
	</description>
	<!--METADATA-->
	<metadatalist>
		<metadata name="author">
			Cycling '74
		</metadata>
		<metadata name="tag">
			Max
		</metadata>
		<metadata name="tag">
			Math
		</metadata>
	</metadatalist>
	<!--INLETS-->
	<inletlist>
		<inlet id="0" type="INLET_TYPE">
			<digest>
				Set Left Operand, Trigger the Calculation
			</digest>
			<description>
				TEXT_HERE
			</description>
		</inlet>
		<inlet id="1" type="INLET_TYPE">
			<digest>
				Set Right Operand
			</digest>
			<description>
				TEXT_HERE
			</description>
		</inlet>
	</inletlist>
	<!--OUTLETS-->
	<outletlist>
		<outlet id="0" type="OUTLET_TYPE">
			<digest>
				Result = Left &gt;= Right
			</digest>
			<description>
				TEXT_HERE
			</description>
		</outlet>
	</outletlist>
	<!--ARGUMENTS-->
	<objarglist>
		<objarg name="comparison-value" optional="1" type="number">
			<digest>
				Comparison value
			</digest>
			<description>
				Sets the initial value, to be compared with a number received in the left inlet. A float argument forces a float comparison.
			</description>
		</objarg>
	</objarglist>
	<!--MESSAGES-->
	<methodlist>
		<method name="bang">
			<arglist />
			<digest>
				Perform the comparison with the most recent values
			</digest>
			<description>
				In left inlet: Performs the comparison with the numbers currently stored. If there is no argument, <o>&gt;=</o> initially holds <m>0</m> for comparison.
			</description>
		</method>
		<method name="int">
			<arglist>
				<arg name="input" optional="0" type="int" />
			</arglist>
			<digest>
				Compare to the stored value, cause output
			</digest>
			<description>
				In left inlet: If the number is greater than or equal to the number in the right inlet, <o>&gt;=</o> outputs <m>1</m>. Otherwise, <o>&gt;=</o> outputs <m>0</m>.
			</description>
		</method>
		<method name="float">
			<arglist>
				<arg name="input" optional="0" type="float" />
			</arglist>
			<digest>
				Compare to the stored value, cause output
			</digest>
			<description>
				Converted to <m>int</m> before comparison, unless <o>&gt;=</o> has a float argument.
			</description>
		</method>
		<method name="in1">
			<arglist>
				<arg name="comparison-value" optional="0" type="int" />
			</arglist>
			<digest>
				Set the comparison value
			</digest>
			<description>
				In right inlet: The number is stored to be compared with a number received in the left inlet.
			</description>
		</method>
		<method name="set">
			<arglist>
				<arg name="set-input" optional="0" type="int" />
			</arglist>
			<digest>
				Set the incoming value without output
			</digest>
			<description>
				The word <m>set</m> followed by a number will set the input number to the object without causing output.
			</description>
		</method>
	</methodlist>
	<!--ATTRIBUTES-->
	<!--EXAMPLE-->
	<examplelist>
		<example img="greaterthaneq.png" caption="Is greater than.... or equal to.... Is not greater than or equal to" />
	</examplelist>
	<!--SEEALSO-->
	<seealsolist>
		<seealso name="!=" />
		<seealso name="&lt;" />
		<seealso name="&lt;=" />
		<seealso name="==" />
		<seealso name="&gt;=" />
		<seealso name="basicchapter19" module="max" type="tutorial" />
	</seealsolist>
	<misc name="Output">
		<entry name="int">
			<description>
				1 if the number in the left inlet is greater than or equal to the number in the right inlet. <m>0</m> if the number in the left inlet is less than the number in the right inlet.
			</description>
		</entry>
	</misc>
</c74object>
