One Hat Cyber Team
Your IP :
216.73.216.80
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
Macaulay2
/
Macaulay2Doc
/
html
/
Edit File:
___List.html
<!DOCTYPE html> <html lang="en"> <head> <title>List -- the class of all lists -- {...}</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <link type="text/css" rel="stylesheet" href="../../../../Macaulay2/Style/doc.css"> <link rel="stylesheet" href="../../../../Macaulay2/Style/katex/katex.min.css"> <script defer="defer" src="../../../../Macaulay2/Style/katex/katex.min.js"></script> <script defer="defer" src="../../../../Macaulay2/Style/katex/contrib/auto-render.min.js"></script> <script> var macros = { "\\break": "\\\\", "\\ZZ": "\\mathbb{Z}", "\\NN": "\\mathbb{N}", "\\QQ": "\\mathbb{Q}", "\\RR": "\\mathbb{R}", "\\CC": "\\mathbb{C}", "\\PP": "\\mathbb{P}" }, delimiters = [ { left: "$$", right: "$$", display: true}, { left: "\\[", right: "\\]", display: true}, { left: "$", right: "$", display: false}, { left: "\\(", right: "\\)", display: false} ], ignoredTags = [ "kbd", "var", "samp", "script", "noscript", "style", "textarea", "pre", "code", "option" ]; document.addEventListener("DOMContentLoaded", function() { renderMathInElement(document.body, { delimiters: delimiters, macros: macros, ignoredTags: ignoredTags, trust: true }); }); </script> <style>.katex { font-size: 1em; }</style> <script defer="defer" src="../../../../Macaulay2/Style/katex/contrib/copy-tex.min.js"></script> <script defer="defer" src="../../../../Macaulay2/Style/katex/contrib/render-a11y-string.min.js"></script> <script src="../../../../Macaulay2/Style/prism.js"></script> <script>var current_version = '1.25.06';</script> <script src="../../../../Macaulay2/Style/version-select.js"></script> <link type="image/x-icon" rel="icon" href="../../../../Macaulay2/Style/icon.gif"> </head> <body> <div id="buttons"> <div> <a href="https://macaulay2.com/">Macaulay2</a> <span id="version-select-container"></span> » <a title="Macaulay2 documentation" href="index.html">Documentation </a> <br><a href="_packages_spprovided_spwith_sp__Macaulay2.html">Packages</a> » <span><a title="Macaulay2 documentation" href="index.html">Macaulay2Doc</a> » <a href="___The_sp__Macaulay2_splanguage.html">The Macaulay2 language</a> » <a title="a detailed overview of lists and sequences in Macaulay2" href="_lists_spand_spsequences.html">lists and sequences</a> » <a title="the class of all visible lists" href="___Visible__List.html">VisibleList</a> » <a title="the class of all lists -- {...}" href="___List.html">List</a></span> </div> <div class="right"> <form method="get" action="https://www.google.com/search"> <input placeholder="Search" type="text" name="q" value=""> <input type="hidden" name="q" value="site:macaulay2.com/doc"> </form> <a href="___Sequence.html">next</a> | previous | <a href="___Vertical__List.html">forward</a> | <a href="___Visible__List.html">backward</a> | <a href="___Visible__List.html">up</a> | <a href="master.html">index</a> | <a href="toc.html">toc</a> </div> </div> <hr> <div> <h1>List -- the class of all lists -- {...}</h1> <div> <h2>Description</h2> Lists in Macaulay2 consist of elements of any type, enclosed in braces, and separated by commas. <table class="examples"> <tr> <td> <pre><code class="language-macaulay2">i1 : L = {a,1,b,2} o1 = {a, 1, b, 2} o1 : List</code></pre> </td> </tr> </table> The length of a list has two notations, the version with the <span class="tt">#</span> is faster when writing programs. <table class="examples"> <tr> <td> <pre><code class="language-macaulay2">i2 : #L, length L o2 = (4, 4) o2 : Sequence</code></pre> </td> </tr> </table> The first entry of the list has index 0. Indexing is performed using <a title="length or access to elements" href="__sh.html">#</a>. <table class="examples"> <tr> <td> <pre><code class="language-macaulay2">i3 : L#2 o3 = b o3 : Symbol</code></pre> </td> </tr> </table> <p>Lists in Macaulay2 are immutable. See <a title="the class of all mutable lists" href="___Mutable__List.html">MutableList</a> for making and using lists that you may modify.</p> <p>To convert lists to and from other types of <a title="the class of all basic lists" href="___Basic__List.html">BasicList</a>, in addition to <a title="create a list" href="_to__List.html">toList</a>, one may use <a title="new objects and new types" href="_new.html">new</a>.</p> <table class="examples"> <tr> <td> <pre><code class="language-macaulay2">i4 : new Array from {a,b,c} o4 = [a, b, c] o4 : Array</code></pre> </td> </tr> <tr> <td> <pre><code class="language-macaulay2">i5 : new List from [a,b,c] o5 = {a, b, c} o5 : List</code></pre> </td> </tr> </table> <p>For an overview of lists and sequences, see <a title="a detailed overview of lists and sequences in Macaulay2" href="_lists_spand_spsequences.html">lists and sequences</a>.</p> </div> <div> <h3>Menu</h3> <ul> <li><span><a title="a type of visible self-initializing list that prints vertically" href="___Vertical__List.html">VerticalList</a> -- a type of visible self-initializing list that prints vertically</span></li> </ul> </div> <div> <div class="waystouse"> <h2>Types of list:</h2> <ul> <li><span><a title="a type of visible self-initializing list that prints vertically" href="___Vertical__List.html">VerticalList</a> -- a type of visible self-initializing list that prints vertically</span></li> </ul> <h2>Functions and methods returning a list:</h2> <ul> <li><span><kbd>List * Thing</kbd> -- see <span><a title="a binary operator, usually used for multiplication" href="__st.html">*</a> -- a binary operator, usually used for multiplication</span></span></li> <li><span><kbd>Thing * List</kbd> -- see <span><a title="a binary operator, usually used for multiplication" href="__st.html">*</a> -- a binary operator, usually used for multiplication</span></span></li> <li><span><kbd>- List</kbd> -- see <span><a title="a unary or binary operator, usually used for negation or subtraction" href="_-.html">-</a> -- a unary or binary operator, usually used for negation or subtraction</span></span></li> <li><span><kbd>List // Number</kbd> -- see <span><a title="a binary operator, usually used for quotient" href="__sl_sl.html">//</a> -- a binary operator, usually used for quotient</span></span></li> <li><span><kbd>List // RingElement</kbd> -- see <span><a title="a binary operator, usually used for quotient" href="__sl_sl.html">//</a> -- a binary operator, usually used for quotient</span></span></li> <li><span><a title="apply a function to {0,..., n-1}" href="_apply_lp__Z__Z_cm__Function_rp.html">apply(ZZ,Function)</a> -- apply a function to {0,..., n-1}</span></li> <li><span><kbd>applyPairs(BasicList,Function)</kbd> -- see <span><a title="apply a function to each pair in a hash table" href="_apply__Pairs.html">applyPairs</a> -- apply a function to each pair in a hash table</span></span></li> <li><span><kbd>applyPairs(Dictionary,Function)</kbd> -- see <span><a title="apply a function to each pair in a hash table" href="_apply__Pairs.html">applyPairs</a> -- apply a function to each pair in a hash table</span></span></li> <li><span><kbd>between(Thing,VisibleList)</kbd> -- see <span><a title="insert something between elements of a list" href="_between.html">between</a> -- insert something between elements of a list</span></span></li> <li><span><a title="the most common elements of a list or tally" href="_commonest.html">commonest</a> -- the most common elements of a list or tally</span></li> <li><span><a title="list the compositions of an integer" href="_compositions.html">compositions</a> -- list the compositions of an integer</span></li> <li><span><a title="minimal primes of an ideal" href="../../MinimalPrimes/html/_minimal__Primes.html">decompose(Ideal)</a></span></li> <li><span><span class="tt">degree(Matrix)</span> (missing documentation)<!--tag: (degree,Matrix)--> </span></li> <li><span><a title="degrees of generators" href="_degrees.html">degrees</a> -- degrees of generators</span></li> <li><span><kbd>elements(Set)</kbd> -- see <span><a title="list of elements" href="_elements.html">elements</a> -- list of elements</span></span></li> <li><span><a title="find a heft vector for a list of degrees" href="_find__Heft.html">findHeft</a> -- find a heft vector for a list of degrees</span></li> <li><span><kbd>frames(CompiledFunction)</kbd> -- see <span><a title="get the frames associated to a closure" href="_frames.html">frames</a> -- get the frames associated to a closure</span></span></li> <li><span><kbd>frames(CompiledFunctionClosure)</kbd> -- see <span><a title="get the frames associated to a closure" href="_frames.html">frames</a> -- get the frames associated to a closure</span></span></li> <li><span><kbd>frames(FunctionClosure)</kbd> -- see <span><a title="get the frames associated to a closure" href="_frames.html">frames</a> -- get the frames associated to a closure</span></span></li> <li><span><kbd>frames(PseudocodeClosure)</kbd> -- see <span><a title="get the frames associated to a closure" href="_frames.html">frames</a> -- get the frames associated to a closure</span></span></li> <li><span><kbd>frames(Sequence)</kbd> -- see <span><a title="get the frames associated to a closure" href="_frames.html">frames</a> -- get the frames associated to a closure</span></span></li> <li><span><kbd>frames(Symbol)</kbd> -- see <span><a title="get the frames associated to a closure" href="_frames.html">frames</a> -- get the frames associated to a closure</span></span></li> <li><span><kbd>Monoid _*</kbd> -- see <span><a href="_generators_spof_springs_cm_spideals_cm_spand_spmodules.html">generators of rings, ideals, and modules</a></span></span></li> <li><span><kbd>Function \ Ideal</kbd> -- see <span><a title="apply a function to generators of an ideal" href="___Ideal_sp_sl_sp__Function.html">Ideal / Function</a> -- apply a function to generators of an ideal</span></span></li> <li><span><a title="apply a function to generators of an ideal" href="___Ideal_sp_sl_sp__Function.html">Ideal / Function</a> -- apply a function to generators of an ideal</span></li> <li><span><kbd>independentSets(Ideal)</kbd> -- see <span><a title="some size-maximal independent subsets of variables modulo an ideal" href="_independent__Sets.html">independentSets</a> -- some size-maximal independent subsets of variables modulo an ideal</span></span></li> <li><span><kbd>independentSets(MonomialIdeal)</kbd> -- see <span><a title="some size-maximal independent subsets of variables modulo an ideal" href="_independent__Sets.html">independentSets</a> -- some size-maximal independent subsets of variables modulo an ideal</span></span></li> <li><span><kbd>keys(Database)</kbd> -- see <span><a title="keys used in a hash table, dictionary, or database" href="_keys.html">keys</a> -- keys used in a hash table, dictionary, or database</span></span></li> <li><span><kbd>keys(Dictionary)</kbd> -- see <span><a title="keys used in a hash table, dictionary, or database" href="_keys.html">keys</a> -- keys used in a hash table, dictionary, or database</span></span></li> <li><span><kbd>keys(HashTable)</kbd> -- see <span><a title="keys used in a hash table, dictionary, or database" href="_keys.html">keys</a> -- keys used in a hash table, dictionary, or database</span></span></li> <li><span><kbd>leadComponent(Matrix)</kbd> -- see <span><a title="the leading component(s) of a vector or matrix" href="_lead__Component.html">leadComponent</a> -- the leading component(s) of a vector or matrix</span></span></li> <li><span><kbd>lines(String)</kbd> -- see <span><a title="split a string into lines" href="_lines.html">lines</a> -- split a string into lines</span></span></li> <li><span><kbd>lines(String,String)</kbd> -- see <span><a title="split a string into lines" href="_lines.html">lines</a> -- split a string into lines</span></span></li> <li><span><a title="Cartesian product of two lists" href="___List_sp_st_st_sp__List.html">List ** List</a> -- Cartesian product of two lists</span></li> <li><span><a title="sum of two vectors" href="___List_sp_pl_sp__List.html">List + List</a> -- sum of two vectors</span></li> <li><span><a title="difference of two vectors" href="___List_sp-_sp__List.html">List - List</a> -- difference of two vectors</span></li> <li><span><a title="join lists, sequences or arrays" href="___List_sp_vb_sp__List.html">List | List</a> -- join lists, sequences or arrays</span></li> <li><span><kbd>localDictionaries(Dictionary)</kbd> -- see <span><a title="get local dictionaries" href="_local__Dictionaries.html">localDictionaries</a> -- get local dictionaries</span></span></li> <li><span><kbd>localDictionaries(FunctionClosure)</kbd> -- see <span><a title="get local dictionaries" href="_local__Dictionaries.html">localDictionaries</a> -- get local dictionaries</span></span></li> <li><span><kbd>localDictionaries(PseudocodeClosure)</kbd> -- see <span><a title="get local dictionaries" href="_local__Dictionaries.html">localDictionaries</a> -- get local dictionaries</span></span></li> <li><span><kbd>localDictionaries(Symbol)</kbd> -- see <span><a title="get local dictionaries" href="_local__Dictionaries.html">localDictionaries</a> -- get local dictionaries</span></span></li> <li><span><span class="tt">localDictionaries(CompiledFunction)</span> (missing documentation)<!--tag: (localDictionaries,CompiledFunction)--> </span></li> <li><span><span class="tt">localDictionaries(CompiledFunctionClosure)</span> (missing documentation)<!--tag: (localDictionaries,CompiledFunctionClosure)--> </span></li> <li><span><span class="tt">localDictionaries(Sequence)</span> (missing documentation)<!--tag: (localDictionaries,Sequence)--> </span></li> <li><span><kbd>locate(List)</kbd> -- see <span><a title="locate source code" href="_locate.html">locate</a> -- locate source code</span></span></li> <li><span><kbd>List / Number</kbd> -- see <span><a title="scalar division" href="___Matrix_sp_sl_sp__Number.html">Matrix / Number</a> -- scalar division</span></span></li> <li><span><kbd>List / RingElement</kbd> -- see <span><a title="scalar division" href="___Matrix_sp_sl_sp__Number.html">Matrix / Number</a> -- scalar division</span></span></li> <li><span><kbd>mingle(BasicList)</kbd> -- see <span><a title="mingle elements of several lists" href="_mingle.html">mingle</a> -- mingle elements of several lists</span></span></li> <li><span><kbd>pack(BasicList,ZZ)</kbd> -- see <span><a title="pack elements of a list or string into several shorter lists or strings" href="_pack.html">pack</a> -- pack elements of a list or string into several shorter lists or strings</span></span></li> <li><span><kbd>pack(String,ZZ)</kbd> -- see <span><a title="pack elements of a list or string into several shorter lists or strings" href="_pack.html">pack</a> -- pack elements of a list or string into several shorter lists or strings</span></span></li> <li><span><kbd>pack(ZZ,BasicList)</kbd> -- see <span><a title="pack elements of a list or string into several shorter lists or strings" href="_pack.html">pack</a> -- pack elements of a list or string into several shorter lists or strings</span></span></li> <li><span><kbd>pack(ZZ,String)</kbd> -- see <span><a title="pack elements of a list or string into several shorter lists or strings" href="_pack.html">pack</a> -- pack elements of a list or string into several shorter lists or strings</span></span></li> <li><span><kbd>pairs(BasicList)</kbd> -- see <span><a title="list the pairs in a hash table, dictionary, or basic list" href="_pairs.html">pairs</a> -- list the pairs in a hash table, dictionary, or basic list</span></span></li> <li><span><kbd>pairs(Dictionary)</kbd> -- see <span><a title="list the pairs in a hash table, dictionary, or basic list" href="_pairs.html">pairs</a> -- list the pairs in a hash table, dictionary, or basic list</span></span></li> <li><span><kbd>pairs(HashTable)</kbd> -- see <span><a title="list the pairs in a hash table, dictionary, or basic list" href="_pairs.html">pairs</a> -- list the pairs in a hash table, dictionary, or basic list</span></span></li> <li><span><a title="list the partitions of an integer" href="_partitions.html">partitions</a> -- list the partitions of an integer</span></li> <li><span><kbd>permutations(ZZ)</kbd> -- see <span><a title="produce all permutations of a list" href="_permutations.html">permutations</a> -- produce all permutations of a list</span></span></li> <li><span><a title="which elements of a list satisfy a condition" href="_positions.html">positions</a> -- which elements of a list satisfy a condition</span></li> <li><span><a title="evaluate a regular expression search" href="_regex.html">regex</a> -- evaluate a regular expression search</span></li> <li><span><a title="search a path for a file" href="_search__Path_lp__List_cm__String_rp.html">searchPath(List,String)</a> -- search a path for a file</span></li> <li><span><kbd>searchPath(String)</kbd> -- see <span><a title="search a path for a file" href="_search__Path_lp__List_cm__String_rp.html">searchPath(List,String)</a> -- search a path for a file</span></span></li> <li><span><kbd>select(String,String)</kbd> -- see <span><a title="select and reformat substrings matching a regular expression" href="_select_lp__String_cm__String_cm__String_rp.html">select(String,String,String)</a> -- select and reformat substrings matching a regular expression</span></span></li> <li><span><a title="select and reformat substrings matching a regular expression" href="_select_lp__String_cm__String_cm__String_rp.html">select(String,String,String)</a> -- select and reformat substrings matching a regular expression</span></li> <li><span><a title="select integers" href="_select_lp__Z__Z_cm__Function_rp.html">select(ZZ,Function)</a> -- select integers</span></li> <li><span><kbd>selectPairs(BasicList,Function)</kbd> -- see <span><a title="select a part of a hash table by pairs" href="_select__Pairs.html">selectPairs</a> -- select a part of a hash table by pairs</span></span></li> <li><span><kbd>selectPairs(ZZ,BasicList,Function)</kbd> -- see <span><a title="select a part of a hash table by pairs" href="_select__Pairs.html">selectPairs</a> -- select a part of a hash table by pairs</span></span></li> <li><span><a title="split a string into substrings using a regular expression" href="_separate.html">separate</a> -- split a string into substrings using a regular expression</span></li> <li><span><kbd>List - Set</kbd> -- see <span><a title="set difference" href="___Set_sp-_sp__Set.html">Set - Set</a> -- set difference</span></span></li> <li><span><a title="produce the subsets of a set or list" href="_subsets.html">subsets</a> -- produce the subsets of a set or list</span></li> <li><span><kbd>take(Thing,List)</kbd> -- see <span><a title="take some elements from a list or sequence" href="_take.html">take</a> -- take some elements from a list or sequence</span></span></li> <li><span><kbd>take(Thing,ZZ)</kbd> -- see <span><a title="take some elements from a list or sequence" href="_take.html">take</a> -- take some elements from a list or sequence</span></span></li> <li><span><kbd>toList(BasicList)</kbd> -- see <span><a title="create a list" href="_to__List.html">toList</a> -- create a list</span></span></li> <li><span><kbd>toList(Set)</kbd> -- see <span><a title="create a list" href="_to__List.html">toList</a> -- create a list</span></span></li> <li><span><kbd>toList(String)</kbd> -- see <span><a title="create a list" href="_to__List.html">toList</a> -- create a list</span></span></li> <li><span><span class="tt">toList(Pseudocode)</span> (missing documentation)<!--tag: (toList,Pseudocode)--> </span></li> <li><span><kbd>transpose(List)</kbd> -- see <span><a title="transpose a matrix or table" href="_transpose.html">transpose</a> -- transpose a matrix or table</span></span></li> <li><span><a title="eliminate duplicates from a list" href="_unique.html">unique</a> -- eliminate duplicates from a list</span></li> <li><span><kbd>unstack(Net)</kbd> -- see <span><a title="list the rows of a net" href="_unstack.html">unstack</a> -- list the rows of a net</span></span></li> <li><span><kbd>unstack(String)</kbd> -- see <span><a title="list the rows of a net" href="_unstack.html">unstack</a> -- list the rows of a net</span></span></li> <li><span><kbd>values(Dictionary)</kbd> -- see <span><a title="values in a hash table" href="_values.html">values</a> -- values in a hash table</span></span></li> <li><span><kbd>values(HashTable)</kbd> -- see <span><a title="values in a hash table" href="_values.html">values</a> -- values in a hash table</span></span></li> <li><span><kbd>List / Command</kbd> -- see <span><a title="apply a function to elements of a list" href="___Visible__List_sp_sl_sp__Function.html">VisibleList / Function</a> -- apply a function to elements of a list</span></span></li> <li><span><kbd>List / Function</kbd> -- see <span><a title="apply a function to elements of a list" href="___Visible__List_sp_sl_sp__Function.html">VisibleList / Function</a> -- apply a function to elements of a list</span></span></li> </ul> <h2>Methods that use a list:</h2> <ul> <li><span><a title="length or cardinality of a list, hash table, dictionary, set, or string" href="__sh_sp__List.html"># List</a> -- length or cardinality of a list, hash table, dictionary, set, or string</span></li> <li><span><kbd>List #? ZZ</kbd> -- see <span><a title="check existence of value in a list, hash table, database, or string" href="__sh_qu.html">#?</a> -- check existence of value in a list, hash table, database, or string</span></span></li> <li><span><a href="../../Varieties/html/__gt_eq_sp__Z__Z.html">>= List</a></span></li> <li><span><kbd>List ? List</kbd> -- see <span><a title="comparison operator" href="__qu.html">?</a> -- comparison operator</span></span></li> <li><span><kbd>basis(InfiniteNumber,List,Ideal)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(InfiniteNumber,List,Matrix)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(InfiniteNumber,List,Module)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(InfiniteNumber,List,Ring)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,Ideal)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,InfiniteNumber,Ideal)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,InfiniteNumber,Matrix)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,InfiniteNumber,Module)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,InfiniteNumber,Ring)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,List,Ideal)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,List,Matrix)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,List,Module)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,List,Ring)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,Matrix)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,Module)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,Ring)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,RingMap)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,ZZ,Ideal)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,ZZ,Matrix)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,ZZ,Module)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(List,ZZ,Ring)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(ZZ,List,Ideal)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(ZZ,List,Matrix)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(ZZ,List,Module)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>basis(ZZ,List,Ring)</kbd> -- see <span><a title="basis or generating set of all or part of a ring, ideal or module" href="_basis.html">basis</a> -- basis or generating set of all or part of a ring, ideal or module</span></span></li> <li><span><kbd>capture(List)</kbd> -- see <span><a title="evaluate Macaulay2 code and capture the output" href="_capture.html">capture</a> -- evaluate Macaulay2 code and capture the output</span></span></li> <li><span><kbd>check(List)</kbd> -- see <span><a title="perform tests of a package" href="_check.html">check</a> -- perform tests of a package</span></span></li> <li><span><kbd>check(List,Package)</kbd> -- see <span><a title="perform tests of a package" href="_check.html">check</a> -- perform tests of a package</span></span></li> <li><span><kbd>check(List,String)</kbd> -- see <span><a title="perform tests of a package" href="_check.html">check</a> -- perform tests of a package</span></span></li> <li><span><kbd>code(List)</kbd> -- see <span><a title="display source code" href="_code.html">code</a> -- display source code</span></span></li> <li><span><kbd>columnPermute(MutableMatrix,ZZ,List)</kbd> -- see <span><a title="permute some columns" href="_column__Permute.html">columnPermute</a> -- permute some columns</span></span></li> <li><span><kbd>commonRing(List)</kbd> -- see <span><a title="find smallest containing ring" href="_common__Ring.html">commonRing</a> -- find smallest containing ring</span></span></li> <li><span><kbd>degreesMonoid(List)</kbd> -- see <span><a title="the ring or monoid of degrees" href="_degrees__Ring_lp__List_rp.html">degreesRing(List)</a> -- the ring or monoid of degrees</span></span></li> <li><span><a title="the ring or monoid of degrees" href="_degrees__Ring_lp__List_rp.html">degreesRing(List)</a> -- the ring or monoid of degrees</span></li> <li><span><kbd>diagonalMatrix(List)</kbd> -- see <span><a title="make a diagonal matrix from a list" href="_diagonal__Matrix_lp__Ring_cm__Z__Z_cm__Z__Z_cm__List_rp.html">diagonalMatrix(Ring,ZZ,ZZ,List)</a> -- make a diagonal matrix from a list</span></span></li> <li><span><kbd>diagonalMatrix(Ring,List)</kbd> -- see <span><a title="make a diagonal matrix from a list" href="_diagonal__Matrix_lp__Ring_cm__Z__Z_cm__Z__Z_cm__List_rp.html">diagonalMatrix(Ring,ZZ,ZZ,List)</a> -- make a diagonal matrix from a list</span></span></li> <li><span><a title="make a diagonal matrix from a list" href="_diagonal__Matrix_lp__Ring_cm__Z__Z_cm__Z__Z_cm__List_rp.html">diagonalMatrix(Ring,ZZ,ZZ,List)</a> -- make a diagonal matrix from a list</span></li> <li><span><kbd>diagonalMatrix(RingFamily,List)</kbd> -- see <span><a title="make a diagonal matrix from a list" href="_diagonal__Matrix_lp__Ring_cm__Z__Z_cm__Z__Z_cm__List_rp.html">diagonalMatrix(Ring,ZZ,ZZ,List)</a> -- make a diagonal matrix from a list</span></span></li> <li><span><kbd>diagonalMatrix(RingFamily,ZZ,ZZ,List)</kbd> -- see <span><a title="make a diagonal matrix from a list" href="_diagonal__Matrix_lp__Ring_cm__Z__Z_cm__Z__Z_cm__List_rp.html">diagonalMatrix(Ring,ZZ,ZZ,List)</a> -- make a diagonal matrix from a list</span></span></li> <li><span><kbd>diagonalMatrix(ZZ,ZZ,List)</kbd> -- see <span><a title="make a diagonal matrix from a list" href="_diagonal__Matrix_lp__Ring_cm__Z__Z_cm__Z__Z_cm__List_rp.html">diagonalMatrix(Ring,ZZ,ZZ,List)</a> -- make a diagonal matrix from a list</span></span></li> <li><span><kbd>directProduct(List)</kbd> -- see <span><a title="direct product" href="_direct__Product.html">directProduct</a> -- direct product</span></span></li> <li><span><kbd>directSum(List)</kbd> -- see <span><a title="direct sum of modules or maps" href="_direct__Sum.html">directSum</a> -- direct sum of modules or maps</span></span></li> <li><span><kbd>document(List)</kbd> -- see <span><a title="create a documentation node" href="_document.html">document</a> -- create a documentation node</span></span></li> <li><span><kbd>makeDocumentTag(List)</kbd> -- see <span><a title="the class of all document tags" href="___Document__Tag.html">DocumentTag</a> -- the class of all document tags</span></span></li> <li><span><kbd>drop(BasicList,List)</kbd> -- see <span><a title="drop some elements from a list or sequence" href="_drop.html">drop</a> -- drop some elements from a list or sequence</span></span></li> <li><span><a title="the Alexander dual" href="_dual_lp__Monomial__Ideal_cm__List_rp.html">dual(MonomialIdeal,List)</a> -- the Alexander dual</span></li> <li><span><kbd>examples(List)</kbd> -- see <span><a title="list the examples in documentation" href="_examples.html">examples</a> -- list the examples in documentation</span></span></li> <li><span><kbd>export(List)</kbd> -- see <span><a title="export symbols from a package" href="_export.html">export</a> -- export symbols from a package</span></span></li> <li><span><kbd>exportFrom(Package,List)</kbd> -- see <span><a title="export symbols from a package's private dictionary" href="_export__From.html">exportFrom</a> -- export symbols from a package's private dictionary</span></span></li> <li><span><kbd>exportFrom(String,List)</kbd> -- see <span><a title="export symbols from a package's private dictionary" href="_export__From.html">exportFrom</a> -- export symbols from a package's private dictionary</span></span></li> <li><span><kbd>exportMutable(List)</kbd> -- see <span><a title="export mutable symbols from a package" href="_export__Mutable.html">exportMutable</a> -- export mutable symbols from a package</span></span></li> <li><span><kbd>findFiles(List)</kbd> -- see <span><a title="find files recursively" href="_find__Files.html">findFiles</a> -- find files recursively</span></span></li> <li><span><kbd>findHeft(List)</kbd> -- see <span><a title="find a heft vector for a list of degrees" href="_find__Heft.html">findHeft</a> -- find a heft vector for a list of degrees</span></span></li> <li><span><kbd>findProgram(String,List)</kbd> -- see <span><a title="load external program" href="_find__Program.html">findProgram</a> -- load external program</span></span></li> <li><span><kbd>gcd(List)</kbd> -- see <span><a title="greatest common divisor" href="_gcd.html">gcd</a> -- greatest common divisor</span></span></li> <li><span><kbd>Ring _ List</kbd> -- see <span><a title="make a monomial from a list of exponents" href="_get_spa_spmonomial_spby_spexponent_spvector.html">get a monomial by exponent vector</a> -- make a monomial from a list of exponents</span></span></li> <li><span><a title="make a graded module" href="../../OldChainComplexes/html/_graded__Module_lp__List_rp.html">gradedModule(List)</a></span></li> <li><span><kbd>HeaderType List</kbd> -- see <span><a title="a class of lists with abbreviated constructors" href="___Header__Type.html">HeaderType</a> -- a class of lists with abbreviated constructors</span></span></li> <li><span><kbd>headlines(List)</kbd> -- see <span><a title="display a table of documentation headlines" href="_headlines.html">headlines</a> -- display a table of documentation headlines</span></span></li> <li><span><kbd>help(List)</kbd> -- see <span><a title="view documentation nodes" href="_help.html">help</a> -- view documentation nodes</span></span></li> <li><span><kbd>hilbertFunction(List,Ideal)</kbd> -- see <span><a title="the Hilbert function" href="_hilbert__Function.html">hilbertFunction</a> -- the Hilbert function</span></span></li> <li><span><kbd>hilbertFunction(List,Module)</kbd> -- see <span><a title="the Hilbert function" href="_hilbert__Function.html">hilbertFunction</a> -- the Hilbert function</span></span></li> <li><span><kbd>hilbertFunction(List,Ring)</kbd> -- see <span><a title="the Hilbert function" href="_hilbert__Function.html">hilbertFunction</a> -- the Hilbert function</span></span></li> <li><span><kbd>homogenize(Matrix,RingElement,List)</kbd> -- see <span><a title="homogenize with respect to a variable" href="_homogenize.html">homogenize</a> -- homogenize with respect to a variable</span></span></li> <li><span><kbd>homogenize(Module,RingElement,List)</kbd> -- see <span><a title="homogenize with respect to a variable" href="_homogenize.html">homogenize</a> -- homogenize with respect to a variable</span></span></li> <li><span><kbd>homogenize(RingElement,RingElement,List)</kbd> -- see <span><a title="homogenize with respect to a variable" href="_homogenize.html">homogenize</a> -- homogenize with respect to a variable</span></span></li> <li><span><kbd>homogenize(Vector,RingElement,List)</kbd> -- see <span><a title="homogenize with respect to a variable" href="_homogenize.html">homogenize</a> -- homogenize with respect to a variable</span></span></li> <li><span><kbd>hooks(List)</kbd> -- see <span><a title="list hooks attached to a key" href="_hooks.html">hooks</a> -- list hooks attached to a key</span></span></li> <li><span><a title="make an ideal" href="_ideal_lp__List_rp.html">ideal(List)</a> -- make an ideal</span></li> <li><span><kbd>importFrom(Package,List)</kbd> -- see <span><a title="import symbols to the current private dictionary" href="_import__From.html">importFrom</a> -- import symbols to the current private dictionary</span></span></li> <li><span><kbd>importFrom(String,List)</kbd> -- see <span><a title="import symbols to the current private dictionary" href="_import__From.html">importFrom</a> -- import symbols to the current private dictionary</span></span></li> <li><span><kbd>intersect(List)</kbd> -- see <span><a title="compute an intersection" href="_intersect.html">intersect</a> -- compute an intersection</span></span></li> <li><span><kbd>lcm(List)</kbd> -- see <span><a title="least common multiple" href="_lcm.html">lcm</a> -- least common multiple</span></span></li> <li><span><a title="get value from list, hash table, database, dictionary, or string" href="___List_sp_sh_sp__Z__Z.html">List # ZZ</a> -- get value from list, hash table, database, dictionary, or string</span></li> <li><span><a title="rectangular sequences of consecutive lists and sequences" href="___List_sp.._sp__List.html">List .. List</a> -- rectangular sequences of consecutive lists and sequences</span></li> <li><span><a title="rectangular sequences of consecutive lists and sequences" href="___List_sp.._lt_sp__List.html">List ..< List</a> -- rectangular sequences of consecutive lists and sequences</span></li> <li><span><a title="component-wise comparison of lists" href="___List_sp_lt_lt_sp__List.html">List << List</a> -- component-wise comparison of lists</span></li> <li><span><span class="tt">List ^ List</span> (missing documentation)<!--tag: (^,List,List)--> </span></li> <li><span><kbd>listSymbols(List)</kbd> -- see <span><a title="compact display of symbols and their values" href="_list__Symbols.html">listSymbols</a> -- compact display of symbols and their values</span></span></li> <li><span><kbd>makePackageIndex(List)</kbd> -- see <span><a title="create an index of installed packages" href="_make__Package__Index.html">makePackageIndex</a> -- create an index of installed packages</span></span></li> <li><span><a title="create a matrix by giving a sparse or dense list of entries" href="_map_lp__Module_cm__Module_cm__List_rp.html">map(Module,Module,List)</a> -- create a matrix by giving a sparse or dense list of entries</span></li> <li><span><kbd>map(Module,Module,RingMap,List)</kbd> -- see <span><a title="homomorphism of modules over different rings" href="_map_lp__Module_cm__Module_cm__Ring__Map_cm__Matrix_rp.html">map(Module,Module,RingMap,Matrix)</a> -- homomorphism of modules over different rings</span></span></li> <li><span><kbd>map(Module,Nothing,RingMap,List)</kbd> -- see <span><a title="homomorphism of modules over different rings" href="_map_lp__Module_cm__Module_cm__Ring__Map_cm__Matrix_rp.html">map(Module,Module,RingMap,Matrix)</a> -- homomorphism of modules over different rings</span></span></li> <li><span><a title="create a matrix by giving a doubly nested list of ring elements" href="_map_lp__Module_cm__Nothing_cm__List_rp.html">map(Module,Nothing,List)</a> -- create a matrix by giving a doubly nested list of ring elements</span></li> <li><span><a title="create a matrix by giving a sparse or dense list of entries" href="_map_lp__Module_cm__Z__Z_cm__List_rp.html">map(Module,ZZ,List)</a> -- create a matrix by giving a sparse or dense list of entries</span></li> <li><span><a title="make a ring map" href="_map_lp__Ring_cm__Ring_cm__List_rp.html">map(Ring,Ring,List)</a> -- make a ring map</span></li> <li><span><kbd>match(List,String)</kbd> -- see <span><a title="regular expression matching" href="_match.html">match</a> -- regular expression matching</span></span></li> <li><span><a title="select rows" href="___Matrix_sp%5E_sp__List.html">Matrix ^ List</a> -- select rows</span></li> <li><span><kbd>MutableMatrix ^ List</kbd> -- see <span><a title="select rows" href="___Matrix_sp%5E_sp__List.html">Matrix ^ List</a> -- select rows</span></span></li> <li><span><kbd>Vector ^ List</kbd> -- see <span><a title="select rows" href="___Matrix_sp%5E_sp__List.html">Matrix ^ List</a> -- select rows</span></span></li> <li><span><a title="select columns" href="___Matrix_sp_us_sp__List.html">Matrix _ List</a> -- select columns</span></li> <li><span><kbd>MutableMatrix _ List</kbd> -- see <span><a title="select columns" href="___Matrix_sp_us_sp__List.html">Matrix _ List</a> -- select columns</span></span></li> <li><span><a title="create a matrix from a doubly-nested list of ring elements or matrices" href="_matrix_lp__List_rp.html">matrix(List)</a> -- create a matrix from a doubly-nested list of ring elements or matrices</span></li> <li><span><a title="create a matrix from a doubly nested list of ring elements or matrices" href="_matrix_lp__Ring_cm__List_rp.html">matrix(Ring,List)</a> -- create a matrix from a doubly nested list of ring elements or matrices</span></li> <li><span><kbd>matrix(RingFamily,List)</kbd> -- see <span><a title="create a matrix from a doubly nested list of ring elements or matrices" href="_matrix_lp__Ring_cm__List_rp.html">matrix(Ring,List)</a> -- create a matrix from a doubly nested list of ring elements or matrices</span></span></li> <li><span><kbd>memoize(Function,List)</kbd> -- see <span><a title="record results of function evaluation for future use" href="_memoize.html">memoize</a> -- record results of function evaluation for future use</span></span></li> <li><span><kbd>Module / List</kbd> -- see <span><a title="quotient module" href="___Module_sp_sl_sp__Module.html">Module / Module</a> -- quotient module</span></span></li> <li><span><a title="projection onto summand" href="___Module_sp%5E_sp__List.html">Module ^ List</a> -- projection onto summand</span></li> <li><span><kbd>Ideal _ List</kbd> -- see <span><a title="map from free module to some generators" href="___Module_sp_us_sp__List.html">Module _ List</a> -- map from free module to some generators</span></span></li> <li><span><a title="map from free module to some generators" href="___Module_sp_us_sp__List.html">Module _ List</a> -- map from free module to some generators</span></li> <li><span><kbd>monoid(List)</kbd> -- see <span><a title="make or retrieve a monoid" href="_monoid.html">monoid</a> -- make or retrieve a monoid</span></span></li> <li><span><kbd>monomialIdeal(List)</kbd> -- see <span><a title="monomial ideal of lead monomials" href="_monomial__Ideal_lp__Matrix_rp.html">monomialIdeal(Matrix)</a> -- monomial ideal of lead monomials</span></span></li> <li><span><span class="tt">MultigradedBettiTally List</span> (missing documentation)<!--tag: (SPACE,MultigradedBettiTally,List)--> </span></li> <li><span><kbd>mutableMatrix(List)</kbd> -- see <span><a title="make a mutable matrix" href="_mutable__Matrix.html">mutableMatrix</a> -- make a mutable matrix</span></span></li> <li><span><kbd>mutableMatrix(Ring,List)</kbd> -- see <span><a title="make a mutable matrix" href="_mutable__Matrix.html">mutableMatrix</a> -- make a mutable matrix</span></span></li> <li><span><kbd>mutableMatrix(RingFamily,List)</kbd> -- see <span><a title="make a mutable matrix" href="_mutable__Matrix.html">mutableMatrix</a> -- make a mutable matrix</span></span></li> <li><span><a title="make a hash table from a list" href="_new_sp__Hash__Table_spfrom_sp__List.html">new HashTable from List</a> -- make a hash table from a list</span></li> <li><span><span class="tt">new OptionTable from List</span> (missing documentation)<!--tag: (NewFromMethod,OptionTable,List)--> </span></li> <li><span><kbd>norm(List)</kbd> -- see <span><a href="_norm.html">norm</a></span></span></li> <li><span><kbd>ofClass(List)</kbd> -- see <span><a title="English phrases for types" href="_of__Class.html">ofClass</a> -- English phrases for types</span></span></li> <li><span><kbd>options(List)</kbd> -- see <span><a title="get the optional arguments and default values of a function or method" href="_options_lp__Function_rp.html">options(Function)</a> -- get the optional arguments and default values of a function or method</span></span></li> <li><span><kbd>OptionTable ++ List</kbd> -- see <span><a href="___Option__Table_sp_pl_pl_sp__Option__Table.html">OptionTable ++ OptionTable</a></span></span></li> <li><span><kbd>List >> Function</kbd> -- see <span><a title="attaching options to a function" href="___Option__Table_sp_gt_gt_sp__Function.html">OptionTable >> Function</a> -- attaching options to a function</span></span></li> <li><span><kbd>part(List,RingElement)</kbd> -- see <span><a title="select terms of a polynomial by degree(s) or weight(s)" href="_part.html">part</a> -- select terms of a polynomial by degree(s) or weight(s)</span></span></li> <li><span><span class="tt">part(List,Ideal)</span> (missing documentation)<!--tag: (part,List,Ideal)--> </span></li> <li><span><span class="tt">part(List,Matrix)</span> (missing documentation)<!--tag: (part,List,Matrix)--> </span></li> <li><span><span class="tt">part(List,Module)</span> (missing documentation)<!--tag: (part,List,Module)--> </span></li> <li><span><span class="tt">part(List,Ring)</span> (missing documentation)<!--tag: (part,List,Ring)--> </span></li> <li><span><a title="product of elements" href="_product_lp__List_rp.html">product(List)</a> -- product of elements</span></li> <li><span><span class="tt">pullback(List)</span> (missing documentation)<!--tag: (pullback,List)--> </span></li> <li><span><span class="tt">pushout(List)</span> (missing documentation)<!--tag: (pushout,List)--> </span></li> <li><span><a title="shuffle a list randomly" href="_random_lp__List_rp.html">random(List)</a> -- shuffle a list randomly</span></li> <li><span><a title="get a random vector in the module" href="_random_lp__List_cm__Module_rp.html">random(List,Module)</a> -- get a random vector in the module</span></li> <li><span><kbd>random(List,Ideal)</kbd> -- see <span><a title="get a random homogeneous element from a graded ideal" href="_random_lp__Z__Z_cm__Ideal_rp.html">random(ZZ,Ideal)</a> -- get a random homogeneous element from a graded ideal</span></span></li> <li><span><kbd>random(List,Ring)</kbd> -- see <span><a title="get a random homogeneous element from a graded ring" href="_random_lp__Z__Z_cm__Ring_rp.html">random(ZZ,Ring)</a> -- get a random homogeneous element from a graded ring</span></span></li> <li><span><kbd>Ring / List</kbd> -- see <span><a title="make a quotient ring" href="___Ring_sp_sl_sp__Ideal.html">Ring / Ideal</a> -- make a quotient ring</span></span></li> <li><span><a title="make a free module" href="___Ring_sp%5E_sp__List.html">Ring ^ List</a> -- make a free module</span></li> <li><span><kbd>RingFamily ^ List</kbd> -- see <span><a title="make a free module" href="___Ring_sp%5E_sp__List.html">Ring ^ List</a> -- make a free module</span></span></li> <li><span><kbd>InexactFieldFamily List</kbd> -- see <span><a title="make a local polynomial ring" href="___Ring_sp__List.html">Ring List</a> -- make a local polynomial ring</span></span></li> <li><span><a title="make a local polynomial ring" href="___Ring_sp__List.html">Ring List</a> -- make a local polynomial ring</span></li> <li><span><kbd>rowPermute(MutableMatrix,ZZ,List)</kbd> -- see <span><a title="permute some rows" href="_row__Permute.html">rowPermute</a> -- permute some rows</span></span></li> <li><span><kbd>rsort(List)</kbd> -- see <span><a title="sort a list or matrix in reverse order" href="_rsort.html">rsort</a> -- sort a list or matrix in reverse order</span></span></li> <li><span><kbd>rsort(List,Function)</kbd> -- see <span><a title="sort a list or matrix in reverse order" href="_rsort.html">rsort</a> -- sort a list or matrix in reverse order</span></span></li> <li><span><kbd>scanLines(Function,List)</kbd> -- see <span><a title="apply a function to each line of a file" href="_scan__Lines.html">scanLines</a> -- apply a function to each line of a file</span></span></li> <li><span><kbd>selectVariables(List,PolynomialRing)</kbd> -- see <span><a title="make a subring of a polynomial ring generated by selected variables" href="_select__Variables.html">selectVariables</a> -- make a subring of a polynomial ring generated by selected variables</span></span></li> <li><span><kbd>Set - List</kbd> -- see <span><a title="set difference" href="___Set_sp-_sp__Set.html">Set - Set</a> -- set difference</span></span></li> <li><span><a title="sort a list" href="_sort_lp__List_rp.html">sort(List)</a> -- sort a list</span></li> <li><span><kbd>sort(List,Function)</kbd> -- see <span><a title="sort a list" href="_sort_lp__List_rp.html">sort(List)</a> -- sort a list</span></span></li> <li><span><a title="construct smallest interval" href="_span_lp__List_rp.html">span(List)</a> -- construct smallest interval</span></li> <li><span><kbd>standardPairs(MonomialIdeal,List)</kbd> -- see <span><a title="find the standard pairs of a monomial ideal" href="_standard__Pairs.html">standardPairs</a> -- find the standard pairs of a monomial ideal</span></span></li> <li><span><kbd>submatrixByDegrees(Matrix,List,List)</kbd> -- see <span><a title="submatrix consisting of rows and columns in an interval or box of degrees" href="_submatrix__By__Degrees.html">submatrixByDegrees</a> -- submatrix consisting of rows and columns in an interval or box of degrees</span></span></li> <li><span><kbd>subsets(List)</kbd> -- see <span><a title="produce the subsets of a set or list" href="_subsets.html">subsets</a> -- produce the subsets of a set or list</span></span></li> <li><span><kbd>subsets(List,ZZ)</kbd> -- see <span><a title="produce the subsets of a set or list" href="_subsets.html">subsets</a> -- produce the subsets of a set or list</span></span></li> <li><span><kbd>substitute(Ideal,List)</kbd> -- see <span><a title="substituting values for variables" href="_substitute.html">substitute</a> -- substituting values for variables</span></span></li> <li><span><kbd>substitute(Matrix,List)</kbd> -- see <span><a title="substituting values for variables" href="_substitute.html">substitute</a> -- substituting values for variables</span></span></li> <li><span><kbd>substitute(Module,List)</kbd> -- see <span><a title="substituting values for variables" href="_substitute.html">substitute</a> -- substituting values for variables</span></span></li> <li><span><kbd>substitute(RingElement,List)</kbd> -- see <span><a title="substituting values for variables" href="_substitute.html">substitute</a> -- substituting values for variables</span></span></li> <li><span><kbd>substitute(Vector,List)</kbd> -- see <span><a title="substituting values for variables" href="_substitute.html">substitute</a> -- substituting values for variables</span></span></li> <li><span><a title="sum the elements of a list" href="_sum_lp__List_rp.html">sum(List)</a> -- sum the elements of a list</span></li> <li><span><kbd>SYNOPSIS(List)</kbd> -- see <span><a title="a standardized synopsis for use in documentation nodes" href="___S__Y__N__O__P__S__I__S.html">SYNOPSIS</a> -- a standardized synopsis for use in documentation nodes</span></span></li> <li><span><kbd>take(BasicList,List)</kbd> -- see <span><a title="take some elements from a list or sequence" href="_take.html">take</a> -- take some elements from a list or sequence</span></span></li> <li><span><kbd>tensor(List)</kbd> -- see <span><a title="tensor product" href="_tensor.html">tensor</a> -- tensor product</span></span></li> <li><span><a title="truncation of the graded ring, ideal or module at a specified degree or set of degrees" href="../../Truncations/html/_truncate_lp__List_cm__Module_rp.html">truncate(List,Ideal)</a></span></li> <li><span><span class="tt">truncate(List,List,Matrix)</span> (missing documentation)<!--tag: (truncate,List,List,Matrix)--> </span></li> <li><span><a title="truncation of a map of free modules" href="../../Truncations/html/_truncate_lp__List_cm__Matrix_rp.html">truncate(List,Matrix)</a></span></li> <li><span><a title="truncation of the graded ring, ideal or module at a specified degree or set of degrees" href="../../Truncations/html/_truncate_lp__List_cm__Module_rp.html">truncate(List,Module)</a></span></li> <li><span><a title="truncation of the graded ring, ideal or module at a specified degree or set of degrees" href="../../Truncations/html/_truncate_lp__List_cm__Module_rp.html">truncate(List,Ring)</a></span></li> <li><span><span class="tt">truncate(Nothing,List,Matrix)</span> (missing documentation)<!--tag: (truncate,Nothing,List,Matrix)--> </span></li> <li><span><kbd>undocumented(List)</kbd> -- see <span><a title="declare that something need not be documented" href="_undocumented.html">undocumented</a> -- declare that something need not be documented</span></span></li> <li><span><kbd>union(List)</kbd> -- see <span><a title="compute the union" href="_union.html">union</a> -- compute the union</span></span></li> <li><span><a title="a sequence of variables" href="_vars_lp__List_rp.html">vars(List)</a> -- a sequence of variables</span></li> <li><span><kbd>vector(List)</kbd> -- see <span><a title="make a vector" href="_vector.html">vector</a> -- make a vector</span></span></li> <li><span><kbd>vector(Module,List)</kbd> -- see <span><a title="make a vector" href="_vector.html">vector</a> -- make a vector</span></span></li> <li><span><kbd>vector(Ring,List)</kbd> -- see <span><a title="make a vector" href="_vector.html">vector</a> -- make a vector</span></span></li> <li><span><kbd>vector(RingFamily,List)</kbd> -- see <span><a title="make a vector" href="_vector.html">vector</a> -- make a vector</span></span></li> <li><span><kbd>List / SelfInitializingType</kbd> -- see <span><a title="apply a function to elements of a list" href="___Visible__List_sp_sl_sp__Function.html">VisibleList / Function</a> -- apply a function to elements of a list</span></span></li> <li><span><a title="get some entries of a list" href="___Visible__List_sp_us_sp__List.html">VisibleList _ List</a> -- get some entries of a list</span></li> <li><span><kbd>weightRange(List,RingElement)</kbd> -- see <span><a title="the pair of lowest and highest weights of the monomials" href="_weight__Range.html">weightRange</a> -- the pair of lowest and highest weights of the monomials</span></span></li> <li><span><kbd>WrapperType List</kbd> -- see <span><a title="a class of lists with abbreviated constructors" href="___Wrapper__Type.html">WrapperType</a> -- a class of lists with abbreviated constructors</span></span></li> </ul> </div> <div class="waystouse"> <h2>For the programmer</h2> <p>The object <a title="the class of all lists -- {...}" href="___List.html">List</a> is <span>a <a title="the class of all mutable types" href="___Type.html">type</a></span>, with ancestor classes <a title="the class of all visible lists" href="___Visible__List.html">VisibleList</a> < <a title="the class of all basic lists" href="___Basic__List.html">BasicList</a> < <a title="the class of all things" href="___Thing.html">Thing</a>.</p> </div> <hr> <div class="waystouse"> <p>The source of this document is in <span class="tt">Macaulay2Doc/ov_lists.m2:616:0</span>.</p> </div> </div> </div> </body> </html>
Simpan