=pod =encoding utf8 =head1 NAME Muldis::D::Ext::Sequence - Muldis D extension for Seq specific operators =head1 VERSION This document is Muldis::D::Ext::Sequence version 0.23.0. =head1 PREFACE This document is part of the Muldis D language specification, whose root document is L; you should read that root document before you read this one, which provides subservient details. =head1 DESCRIPTION Muldis D has a mandatory core set of system-defined (eternally available) entities, which is referred to as the I or the I; they are the minimal entities that all Muldis D implementations need to provide; they are mutually self-describing and are used to bootstrap the language; any entities outside the core, called I, are non-mandatory and are defined in terms of the core or each other, but the reverse isn't true. This current C document describes the system-defined I, which consists of generic operators that are specific to the C parameterized relation type, and said operators are short-hands for generic relational operators in the language core. This current document does not describe the polymorphic operators that all types, or some types including core types, have defined over them; said operators are defined once for all types in L. I =head1 SYSTEM-DEFINED SEQUENCE-CONCERNING FUNCTIONS =over =item C This function results in the scalar or nonscalar C attribute of the tuple of C whose C attribute is C. This function will fail if no tuple exists in C with the specified index. =item C This function results in its C argument but that the C attribute of the tuple of C whose C attribute is C has been updated with a new scalar or nonscalar value given by C. This function will fail if no tuple exists in C with the specified index, or if the declared type of C isn't a subtype of the declared type of the C attribute. =item C This function results in its C argument but that a new tuple has been inserted whose C is C and whose C is C; any existing tuples with C values greater than or equal to C had theirs incremented by 1. As a trivial case, if C is equal to zero or is equal to the cardinality of C, then C has become the new first or last (or only) element, respectively. This function will fail if C is greater than the cardinality of C, or if the declared type of C isn't a subtype of the declared type of the C attribute. =item C This function results in its C argument but that a tuple has been deleted whose C is C; any existing tuples with C values greater than or equal to C had theirs decremented by 1. This function will fail if no tuple exists in C with the specified index. =item C This function results in C iff its C argument matches the C attribute of at least one tuple of its C argument (that is, iff conceptually C is an element of C), and C otherwise. This function will fail if the declared type of C isn't a subtype of the declared type of that attribute. =item C This function is exactly the same as C except that it results in the opposite boolean value when given the same arguments. =item C This function is the same as C, including that input values for the reduction come from the C attribute of C, except that it works with a C rather than a C. Also, the function named in C is only associative, and I commutative; the arguments to C and C of C are guaranteed to be consecutive input elements, with the result returning to their place in sequence beween the other input elements. =item C This function is to C as C is to C. =item C This function results in the catenation of the N element values of its argument; it is a reduction operator that recursively takes each consecutive pair of input values and catenates (which is associative) them together until just one is left, which is the result. To catenate 2 C means to union their tuples after first increasing all the C values of the second one by the cardinality of the first one. If C has zero values, then C results in the empty sequence value, which is the identity value for catenate. =item C This function results in the catenation of C instances of C. =item C This function results in its argument but that the order of its elements has been reversed. For example, the input C<< { 0=>'a', 1=>'b', 2=>'c', 3=>'d'} >> results in C<< { 0=>'d', 1=>'c', 2=>'b', 3=>'a' } >>. =item C This function results in C iff the sequence of values comprising C is a sub-sequence of the sequence of values C, and C otherwise. This function will fail if the 2 arguments don't have the same heading. =item C This function is exactly the same as C except that it results in the opposite boolean value when given the same arguments. =back =head1 SEE ALSO Go to L for the majority of distribution-internal references, and L for the majority of distribution-external references. =head1 AUTHOR Darren Duncan (C) =head1 LICENSE AND COPYRIGHT This file is part of the formal specification of the Muldis D language. Muldis D is Copyright © 2002-2008, Darren Duncan. See the LICENSE AND COPYRIGHT of L for details. =head1 TRADEMARK POLICY The TRADEMARK POLICY in L applies to this file too. =head1 ACKNOWLEDGEMENTS The ACKNOWLEDGEMENTS in L apply to this file too. =cut