<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.1" -->
<?xml-stylesheet href="http://sdp.soapi.com/lib/styles/feed.css" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://sdp.soapi.com/feed.php">
        <title>SDP ptpscript:operators</title>
        <description></description>
        <link>http://sdp.soapi.com/</link>
        <image rdf:resource="http://sdp.soapi.com/lib/images/favicon.ico" />
       <dc:date>2009-11-30T23:00:32+01:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:arithmetic?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:array?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:assignment?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:auto-increment?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:bitwise?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:boolean?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:comparison?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:existence?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:glue?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:grouping?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:logical?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:mathematical?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:number?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:precedence_tables?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:range?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:string?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:type_casting?rev=1169633753"/>
                <rdf:li rdf:resource="http://sdp.soapi.com/ptpscript:operators:type_checking?rev=1169633753"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://sdp.soapi.com/lib/images/favicon.ico">
        <title>SDP</title>
        <link>http://sdp.soapi.com/</link>
        <url>http://sdp.soapi.com/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:arithmetic?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Arithmetic Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:arithmetic?rev=1169633753</link>
        <description> Arithmetic Operators perform basic arithmetic operations on the terms specified. There are different arithmetic operations available for each type of value.     Symbol Type Name Description Example     Number     +  Infix Addition Adds the right ter...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:array?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Array Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:array?rev=1169633753</link>
        <description> Array Operators perform various operations on the terms specified. There are several different types of operation available.     Symbol Type Name Description Example     Arithmetic     @  Infix Merge Joins the right term to the end of the left term ...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:assignment?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Assignment Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:assignment?rev=1169633753</link>
        <description> Assignment Operators set the value of the Variable on the left of the Operator to be the value of the expression on the right of the Operator, after any appropriate operation (as determined by the Assignment Operator in question).     Symbol Type Na...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:auto-increment?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Auto-Increment and Auto-Decrement Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:auto-increment?rev=1169633753</link>
        <description> Auto-increment and auto-decrement Operators increase or decrease the value they are applied to by 1.     Symbol Type Name Description Example     Number     ++  Prefix Pre-increment Increments the term by 1, then returns the new value  ++a      ++  ...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:bitwise?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Bitwise Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:bitwise?rev=1169633753</link>
        <description> Bitwise Operators perform bitwise operations on the terms specified. When working with integer Numbers, this allows specific bits to be turned on or off. When working with Strings, the ASCII values for the characters are used. When working with Bool...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:boolean?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Boolean Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:boolean?rev=1169633753</link>
        <description> Boolean Operators perform various operations on the terms specified. There are several different types of operation available.     Symbol Type Name Description Example     Bitwise     ?&amp;amp;  Infix AND True if left and right terms are true  a ?&amp;amp;...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:comparison?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Comparison Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:comparison?rev=1169633753</link>
        <description> Comparison Operators compare two terms and return a Boolean.     Symbol Type Name Description Example     Equality Comparison     Standard comparison     ==  Infix Equal to true if both terms are equal  a == b      !=  Infix Not equal to true if bot...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:existence?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Existence Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:existence?rev=1169633753</link>
        <description> Existence Operators perform operations to do with the existence of Variables.     Symbol Type Name Description Example     ???  Prefix Existence Returns true if the variable exists, or false otherwise  ??? a      destroy  Prefix Destruction Destroys...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:glue?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Glue Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:glue?rev=1169633753</link>
        <description> Glue Operators are used in Array syntax, for addressing of Variables.     Symbol Type Name Description Example     .  Infix Dot Glues two variable names together to make a reference to an array key  a.b      ..  Infix Double-dot __CurrentLoop__ shor...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:grouping?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Grouping Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:grouping?rev=1169633753</link>
        <description> Grouping Operators are used to group expressions or terms together for various purposes.     Symbol Type Name Description Example     Grouping     ( )  Various Parentheses Group together enclosed terms  ( a + b )      [ ]  Various Square brackets Sa...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:logical?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Logical Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:logical?rev=1169633753</link>
        <description> Logical Operators perform logical comparisons on the terms specified, and return either false or the term that made the comparison true.     Symbol Type Name Description Example     High precedence (tight)     &amp;amp;&amp;amp;  Infix AND True if both term...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:mathematical?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Mathematical Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:mathematical?rev=1169633753</link>
        <description> Mathematical Operators are so named to distinguish them from basic arithmetic Operators, which are of course also essentially mathematical.     Symbol Type Name Description Example     Number     abs  Prefix Absolute value Gives the positive numeric...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:number?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Numerical Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:number?rev=1169633753</link>
        <description> Number Operators perform various operations on the terms specified. There are several different types of operation available.     Symbol Type Name Description Example     Arithmetic     +  Infix Addition Adds the right term to the left term to give ...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:precedence_tables?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Operator Precedence Tables</title>
        <link>http://sdp.soapi.com/ptpscript:operators:precedence_tables?rev=1169633753</link>
        <description> There are two versions of the precedence table; the detailed version showing every Operator, and the summary version which groups all Operators of the same level together.   Summary Precedence Table  Detailed Precedence Table   ...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:range?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Range Operator</title>
        <link>http://sdp.soapi.com/ptpscript:operators:range?rev=1169633753</link>
        <description> The Range Operator is used to create an Array of elements ranging between two values.     Symbol Type Name Description Example     ...  Infix Range Creates an Array than contains a range of elements from the left term value to the right term value, ...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:string?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>String Operators</title>
        <link>http://sdp.soapi.com/ptpscript:operators:string?rev=1169633753</link>
        <description> String Operators perform various operations on the terms specified. There are several different types of operation available.     Symbol Type Name Description Example     Arithmetic     ~  Infix Concatenation Joins the right term to the end of the l...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:type_casting?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Type Casting</title>
        <link>http://sdp.soapi.com/ptpscript:operators:type_casting?rev=1169633753</link>
        <description> Type-casting Operators convert a value into a specific type.     Symbol Type Name Description Example     Number     +  Prefix Cast Converts the term to a Number, without affecting the sign  +a      -  Prefix Inverse cast Converts the term to a Numb...</description>
    </item>
    <item rdf:about="http://sdp.soapi.com/ptpscript:operators:type_checking?rev=1169633753">
        <dc:format>text/html</dc:format>
        <dc:date>2007-01-24T10:15:53+01:00</dc:date>
        <title>Type Checking</title>
        <link>http://sdp.soapi.com/ptpscript:operators:type_checking?rev=1169633753</link>
        <description> Type-checking Operators allow a value&amp;#039;s type to be checked. As well as actual types, there are also &amp;quot;pseudo-types&amp;quot; that can be checked for.     Symbol Type Name Description Example     typeof  Prefix TypeOf Returns the actual type of ...</description>
    </item>
</rdf:RDF>
