Skip to content

Commit 41eb7d3

Browse files
committed
Updated to help with Raku/doc#4071
1 parent 0062062 commit 41eb7d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

language.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h2 id="At_the_beginning"><a class="u" href="#___top" title="go to top of docume
9696
</table><h2 id="Fundamental_topics"><a class="u" href="#___top" title="go to top of document">Fundamental topics</a></h2>
9797
<table class="pod-table">
9898
<tbody>
99-
<tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules that define certain aspects of the behavior of the code</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Raku syntax</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/unicode_ascii">Unicode versus ASCII symbols</a></td> <td>Unicode symbols and their ASCII equivalents</td> </tr> <tr> <td><a href="/language/quoting">Quoting constructs</a></td> <td>Writing strings, word lists, and regexes in Raku</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, bags, and mixes</a></td> <td>Unordered collections of unique and weighted objects in Raku</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Raku infixes, prefixes, postfixes, and more!</td> </tr> <tr> <td><a href="/language/mop">Metaobject protocol (MOP)</a></td> <td>Introspection and the Raku object system</td> </tr> <tr> <td><a href="/language/system">System interaction</a></td> <td>Working with the underlying operating system and running applications</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving runtime or compile-time performance</td> </tr> <tr> <td><a href="/language/newline">Newline handling in Raku</a></td> <td>How the different newline characters are handled, and how to change the behavior</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Raku containers</td> </tr> <tr> <td><a href="/language/list">Lists, sequences, and arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/temporal">Date and time functions</a></td> <td>Processing date and time in Raku</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Raku</td> </tr> <tr> <td><a href="/language/typesystem">Type system</a></td> <td>Introduction to the type system of Raku</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/traits">Traits</a></td> <td>Compile-time specification of behavior made easy</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and functional programming in Raku</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Raku</td> </tr> <tr> <td><a href="/language/objects">Object orientation</a></td> <td>Object orientation in Raku</td> </tr> <tr> <td><a href="/language/control">Control flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output the definitive guide</a></td> <td>Correctly use Raku IO</td> </tr> <tr> <td><a href="/language/nativecall">Native calling interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/statement-prefixes">Statement prefixes</a></td> <td>Prefixes that alter the behavior of a statement or a set of them</td> </tr> <tr> <td><a href="/language/structures">Data structures</a></td> <td>How Raku deals with data structures and what we can expect from them</td> </tr> <tr> <td><a href="/language/nativetypes">Raku native types</a></td> <td>Using the types the compiler and hardware make available to you</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/hashmap">Hashes and maps</a></td> <td>Working with associative arrays/dictionaries/hashes</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode support in Raku</td> </tr> <tr> <td><a href="/language/contexts">Contexts and contextualizers</a></td> <td>What are contexts and how to switch into them</td> </tr> <tr> <td><a href="/language/enumeration">Enumeration</a></td> <td>An example using the enum type</td> </tr> <tr> <td><a href="/language/numerics">Numerics</a></td> <td>Numeric types available in Raku</td> </tr>
99+
<tr> <td><a href="/language/pragmas">Pragmas</a></td> <td>Special modules that define certain aspects of the behavior of the code</td> </tr> <tr> <td><a href="/language/packages">Packages</a></td> <td>Organizing and referencing namespaced program elements</td> </tr> <tr> <td><a href="/language/syntax">Syntax</a></td> <td>General rules of Raku syntax</td> </tr> <tr> <td><a href="/language/regexes">Regexes</a></td> <td>Pattern matching against strings</td> </tr> <tr> <td><a href="/language/unicode_ascii">Unicode versus ASCII symbols</a></td> <td>Unicode symbols and their ASCII equivalents</td> </tr> <tr> <td><a href="/language/quoting">Quoting constructs</a></td> <td>Writing strings, word lists, and regexes in Raku</td> </tr> <tr> <td><a href="/language/subscripts">Subscripts</a></td> <td>Accessing data structure elements by index or key</td> </tr> <tr> <td><a href="/language/setbagmix">Sets, bags, and mixes</a></td> <td>Unordered collections of unique and weighted objects in Raku</td> </tr> <tr> <td><a href="/language/operators">Operators</a></td> <td>Common Raku infix, prefix, postfix operators, and more!</td> </tr> <tr> <td><a href="/language/mop">Metaobject protocol (MOP)</a></td> <td>Introspection and the Raku object system</td> </tr> <tr> <td><a href="/language/system">System interaction</a></td> <td>Working with the underlying operating system and running applications</td> </tr> <tr> <td><a href="/language/performance">Performance</a></td> <td>Measuring and improving runtime or compile-time performance</td> </tr> <tr> <td><a href="/language/newline">Newline handling in Raku</a></td> <td>How the different newline characters are handled, and how to change the behavior</td> </tr> <tr> <td><a href="/language/containers">Containers</a></td> <td>A low-level explanation of Raku containers</td> </tr> <tr> <td><a href="/language/list">Lists, sequences, and arrays</a></td> <td>Positional data constructs</td> </tr> <tr> <td><a href="/language/temporal">Date and time functions</a></td> <td>Processing date and time in Raku</td> </tr> <tr> <td><a href="/language/exceptions">Exceptions</a></td> <td>Using exceptions in Raku</td> </tr> <tr> <td><a href="/language/typesystem">Type system</a></td> <td>Introduction to the type system of Raku</td> </tr> <tr> <td><a href="/language/grammars">Grammars</a></td> <td>Parsing and interpreting text</td> </tr> <tr> <td><a href="/language/traits">Traits</a></td> <td>Compile-time specification of behavior made easy</td> </tr> <tr> <td><a href="/language/functions">Functions</a></td> <td>Functions and functional programming in Raku</td> </tr> <tr> <td><a href="/language/variables">Variables</a></td> <td>Variables in Raku</td> </tr> <tr> <td><a href="/language/objects">Object orientation</a></td> <td>Object orientation in Raku</td> </tr> <tr> <td><a href="/language/control">Control flow</a></td> <td>Statements used to control the flow of execution</td> </tr> <tr> <td><a href="/language/io-guide">Input/Output the definitive guide</a></td> <td>Correctly use Raku IO</td> </tr> <tr> <td><a href="/language/nativecall">Native calling interface</a></td> <td>Call into dynamic libraries that follow the C calling convention</td> </tr> <tr> <td><a href="/language/statement-prefixes">Statement prefixes</a></td> <td>Prefixes that alter the behavior of a statement or a set of them</td> </tr> <tr> <td><a href="/language/structures">Data structures</a></td> <td>How Raku deals with data structures and what we can expect from them</td> </tr> <tr> <td><a href="/language/nativetypes">Raku native types</a></td> <td>Using the types the compiler and hardware make available to you</td> </tr> <tr> <td><a href="/language/phasers">Phasers</a></td> <td>Program execution phases and corresponding phaser blocks</td> </tr> <tr> <td><a href="/language/hashmap">Hashes and maps</a></td> <td>Working with associative arrays/dictionaries/hashes</td> </tr> <tr> <td><a href="/language/unicode">Unicode</a></td> <td>Unicode support in Raku</td> </tr> <tr> <td><a href="/language/contexts">Contexts and contextualizers</a></td> <td>What are contexts and how to switch into them</td> </tr> <tr> <td><a href="/language/enumeration">Enumeration</a></td> <td>An example using the enum type</td> </tr> <tr> <td><a href="/language/numerics">Numerics</a></td> <td>Numeric types available in Raku</td> </tr>
100100
</tbody>
101101
</table><h2 id="General_reference"><a class="u" href="#___top" title="go to top of document">General reference</a></h2>
102102
<table class="pod-table">

language/operators.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
</div>
6262

6363
<h1 class="title">Operators</h1>
64-
<p class="subtitle">Common Raku infixes, prefixes, postfixes, and more!</p>
64+
<p class="subtitle">Common Raku infix, prefix, postfix operators, and more!</p>
6565

6666
<nav class="indexgroup">
6767
<table id="TOC">

0 commit comments

Comments
 (0)