From 50f64c60b87e8d03fedc3f9f4e655aff8ca9f16c Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Wed, 12 Dec 2018 19:32:24 +0100 Subject: Add empty 'since' attribute for old modules and functions --- lib/stdlib/doc/src/array.xml | 60 +++++------ lib/stdlib/doc/src/base64.xml | 14 +-- lib/stdlib/doc/src/beam_lib.xml | 30 +++--- lib/stdlib/doc/src/c.xml | 60 +++++------ lib/stdlib/doc/src/calendar.xml | 48 ++++----- lib/stdlib/doc/src/dets.xml | 90 ++++++++-------- lib/stdlib/doc/src/dict.xml | 40 +++---- lib/stdlib/doc/src/digraph.xml | 66 ++++++------ lib/stdlib/doc/src/digraph_utils.xml | 38 +++---- lib/stdlib/doc/src/epp.xml | 12 +-- lib/stdlib/doc/src/erl_eval.xml | 32 +++--- lib/stdlib/doc/src/erl_expand_records.xml | 4 +- lib/stdlib/doc/src/erl_id_trans.xml | 4 +- lib/stdlib/doc/src/erl_internal.xml | 20 ++-- lib/stdlib/doc/src/erl_lint.xml | 12 +-- lib/stdlib/doc/src/erl_parse.xml | 18 ++-- lib/stdlib/doc/src/erl_pp.xml | 32 +++--- lib/stdlib/doc/src/erl_scan.xml | 16 +-- lib/stdlib/doc/src/erl_tar.xml | 28 ++--- lib/stdlib/doc/src/ets.xml | 122 +++++++++++----------- lib/stdlib/doc/src/file_sorter.xml | 30 +++--- lib/stdlib/doc/src/filelib.xml | 20 ++-- lib/stdlib/doc/src/filename.xml | 36 +++---- lib/stdlib/doc/src/gb_sets.xml | 70 ++++++------- lib/stdlib/doc/src/gb_trees.xml | 48 ++++----- lib/stdlib/doc/src/gen_event.xml | 44 ++++---- lib/stdlib/doc/src/gen_server.xml | 48 ++++----- lib/stdlib/doc/src/io.xml | 84 +++++++-------- lib/stdlib/doc/src/io_lib.xml | 36 +++---- lib/stdlib/doc/src/lists.xml | 140 ++++++++++++------------- lib/stdlib/doc/src/log_mf_h.xml | 6 +- lib/stdlib/doc/src/math.xml | 44 ++++---- lib/stdlib/doc/src/ms_transform.xml | 8 +- lib/stdlib/doc/src/orddict.xml | 40 +++---- lib/stdlib/doc/src/ordsets.xml | 36 +++---- lib/stdlib/doc/src/pool.xml | 18 ++-- lib/stdlib/doc/src/proc_lib.xml | 50 ++++----- lib/stdlib/doc/src/proplists.xml | 40 +++---- lib/stdlib/doc/src/qlc.xml | 54 +++++----- lib/stdlib/doc/src/queue.xml | 62 +++++------ lib/stdlib/doc/src/random.xml | 18 ++-- lib/stdlib/doc/src/re.xml | 18 ++-- lib/stdlib/doc/src/sets.xml | 36 +++---- lib/stdlib/doc/src/shell.xml | 12 +-- lib/stdlib/doc/src/slave.xml | 22 ++-- lib/stdlib/doc/src/sofs.xml | 168 +++++++++++++++--------------- lib/stdlib/doc/src/string.xml | 76 +++++++------- lib/stdlib/doc/src/supervisor.xml | 20 ++-- lib/stdlib/doc/src/supervisor_bridge.xml | 10 +- lib/stdlib/doc/src/sys.xml | 62 +++++------ lib/stdlib/doc/src/timer.xml | 40 +++---- lib/stdlib/doc/src/unicode.xml | 16 +-- lib/stdlib/doc/src/win32reg.xml | 28 ++--- lib/stdlib/doc/src/zip.xml | 42 ++++---- 54 files changed, 1114 insertions(+), 1114 deletions(-) (limited to 'lib/stdlib/doc') diff --git a/lib/stdlib/doc/src/array.xml b/lib/stdlib/doc/src/array.xml index db0ab42372..aa1577a067 100644 --- a/lib/stdlib/doc/src/array.xml +++ b/lib/stdlib/doc/src/array.xml @@ -32,7 +32,7 @@ A array.xml - array + array Functional, extendible arrays.

Functional, extendible arrays. Arrays can have fixed size, or can grow @@ -137,7 +137,7 @@ A3 = array:fix(A2). - + Get the value used for uninitialized entries.

Gets the value used for uninitialized entries.

@@ -146,7 +146,7 @@ A3 = array:fix(A2). - + Fix the array size.

Fixes the array size. This prevents it from growing automatically @@ -157,7 +157,7 @@ A3 = array:fix(A2). - + Fold the array elements using the specified function and initial accumulator value. @@ -172,7 +172,7 @@ A3 = array:fix(A2). - + Fold the array elements right-to-left using the specified function and initial accumulator value. @@ -186,7 +186,7 @@ A3 = array:fix(A2). - + Equivalent to from_list(List, undefined).

Equivalent to @@ -195,7 +195,7 @@ A3 = array:fix(A2). - + Convert a list to an extendible array.

Converts a list to an extendible array. Default @@ -208,7 +208,7 @@ A3 = array:fix(A2). - + Equivalent to from_orddict(Orddict, undefined). @@ -218,7 +218,7 @@ A3 = array:fix(A2). - + Convert an ordered list of pairs {Index, Value} to a corresponding extendible array. @@ -234,7 +234,7 @@ A3 = array:fix(A2). - + Get the value of entry I.

Gets the value of entry I. If @@ -249,7 +249,7 @@ A3 = array:fix(A2). - + Returns true if X is an array, otherwise false. @@ -261,7 +261,7 @@ A3 = array:fix(A2). - + Check if the array has fixed size.

Checks if the array has fixed size. Returns true if the array @@ -271,7 +271,7 @@ A3 = array:fix(A2). - + Map the specified function onto each array element.

Maps the specified function onto each array element. The elements are @@ -285,7 +285,7 @@ A3 = array:fix(A2). - + Create a new, extendible array with initial size zero. @@ -296,7 +296,7 @@ A3 = array:fix(A2). - + Create a new array according to the specified options. @@ -346,7 +346,7 @@ array:new([{size,10},{fixed,false},{default,-1}]) - + Create a new array according to the specified size and options. @@ -370,7 +370,7 @@ array:new(100, {default,0}) - + Make the array resizable.

Makes the array resizable. (Reverses the effects of @@ -380,7 +380,7 @@ array:new(100, {default,0}) - + Reset entry I to the default value for the array. @@ -399,7 +399,7 @@ array:new(100, {default,0}) - + Change the array size to that reported by sparse_size/1. @@ -413,7 +413,7 @@ array:new(100, {default,0}) - + Change the array size.

Change the array size. If Size is not a @@ -424,7 +424,7 @@ array:new(100, {default,0}) - + Set entry I of the array to Value.

Sets entry I of the array to @@ -441,7 +441,7 @@ array:new(100, {default,0}) - + Get the number of entries in the array.

Gets the number of entries in the array. Entries are numbered from @@ -454,7 +454,7 @@ array:new(100, {default,0}) - + Fold the array elements using the specified function and initial accumulator value, skipping default-valued entries. @@ -469,7 +469,7 @@ array:new(100, {default,0}) - + Fold the array elements right-to-left using the specified function and initial accumulator value, skipping default-valued entries. @@ -485,7 +485,7 @@ array:new(100, {default,0}) - + Map the specified function onto each array element, skipping default-valued entries. @@ -498,7 +498,7 @@ array:new(100, {default,0}) - + Get the number of entries in the array up until the last non-default-valued entry. @@ -512,7 +512,7 @@ array:new(100, {default,0}) - + Convert the array to a list, skipping default-valued entries. @@ -522,7 +522,7 @@ array:new(100, {default,0}) - + Convert the array to an ordered list of pairs {Index, Value}, skipping default-valued entries. @@ -534,7 +534,7 @@ array:new(100, {default,0}) - + Convert the array to a list.

Converts the array to a list.

@@ -545,7 +545,7 @@ array:new(100, {default,0})
- + Convert the array to an ordered list of pairs {Index, Value}. diff --git a/lib/stdlib/doc/src/base64.xml b/lib/stdlib/doc/src/base64.xml index cfa1ecc006..479072ba4f 100644 --- a/lib/stdlib/doc/src/base64.xml +++ b/lib/stdlib/doc/src/base64.xml @@ -29,7 +29,7 @@ base64.xml - base64 + base64 Provides base64 encode and decode, see RFC 2045. @@ -51,10 +51,10 @@ - - - - + + + + Decode a base64 encoded string to data. @@ -69,8 +69,8 @@ - - + + Encode data into base64. diff --git a/lib/stdlib/doc/src/beam_lib.xml b/lib/stdlib/doc/src/beam_lib.xml index 473170c839..8bb4cf9101 100644 --- a/lib/stdlib/doc/src/beam_lib.xml +++ b/lib/stdlib/doc/src/beam_lib.xml @@ -28,7 +28,7 @@ 1999-10-30 PA1 - beam_lib + beam_lib An interface to the BEAM file format.

This module provides an interface to files created by @@ -283,7 +283,7 @@ io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). - + Read selected chunks from a BEAM file or binary.

Reads chunk data for selected chunks references. The order of @@ -293,7 +293,7 @@ io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). - + Read selected chunks from a BEAM file or binary.

Reads chunk data for selected chunks references. The order of @@ -312,7 +312,7 @@ io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). - + Unregister the current crypto key fun.

Unregisters the crypto key fun and terminates the process @@ -327,7 +327,7 @@ io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). - + Compare two BEAM files. @@ -341,7 +341,7 @@ io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). - + Compare the BEAM files in two directories.

Compares the BEAM files in @@ -359,7 +359,7 @@ io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). - + Register a fun that provides a crypto key. @@ -398,7 +398,7 @@ CryptoKeyFun(clear) -> term() - + Compare the BEAM files in two directories.

Compares the BEAM files in two directories as @@ -409,7 +409,7 @@ CryptoKeyFun(clear) -> term() - + Return an English description of a BEAM read error reply. @@ -422,7 +422,7 @@ CryptoKeyFun(clear) -> term() - + Information about a BEAM file.

Returns a list containing some information about a BEAM file @@ -449,7 +449,7 @@ CryptoKeyFun(clear) -> term() - + Read the module version of the BEAM file.

Calculates an MD5 redundancy check for the code of the module @@ -458,7 +458,7 @@ CryptoKeyFun(clear) -> term() - + Remove chunks not needed by the loader from a BEAM file. @@ -470,7 +470,7 @@ CryptoKeyFun(clear) -> term() - + Removes chunks not needed by the loader from BEAM files. @@ -483,7 +483,7 @@ CryptoKeyFun(clear) -> term() - + Remove chunks not needed by the loader from all BEAM files of a release. @@ -497,7 +497,7 @@ CryptoKeyFun(clear) -> term() - + Read the module version of the BEAM file.

Returns the module version or versions. A version is defined by diff --git a/lib/stdlib/doc/src/c.xml b/lib/stdlib/doc/src/c.xml index 40e6d9d43e..29edc373c7 100644 --- a/lib/stdlib/doc/src/c.xml +++ b/lib/stdlib/doc/src/c.xml @@ -28,7 +28,7 @@ 1996-10-30 B - c + c Command interface module.

This module enables users to enter the short form of @@ -41,7 +41,7 @@ - + Stack backtrace for a process.

Stack backtrace for a process. Equivalent to @@ -50,8 +50,8 @@ - - + + Compile and load a file or module. @@ -80,7 +80,7 @@ - + Change working directory.

Changes working directory to Dir, which can be a @@ -103,7 +103,7 @@ - + Flush any messages sent to the shell.

Flushes any messages sent to the shell.

@@ -111,7 +111,7 @@
- + Help information.

Displays help information: all valid shell internal commands, @@ -120,8 +120,8 @@ - - + + System information.

i/0 displays system information, listing @@ -131,7 +131,7 @@ - + Information about pid <X.Y.Z>.

Displays information about a process, Equivalent to @@ -141,7 +141,7 @@ - + Load or reload a module.

Purges and loads, or reloads, a module by calling @@ -154,7 +154,7 @@ - lc(Files) -> ok + lc(Files) -> ok Compile a list of files. Files = [File] @@ -180,7 +180,7 @@ - + List files in the current directory.

Lists files in the current directory.

@@ -188,7 +188,7 @@
- + List files in a directory or a single file.

Lists files in directory Dir or, if Dir @@ -197,7 +197,7 @@ - + Which modules are loaded.

Displays information about the loaded modules, including @@ -206,7 +206,7 @@ - + Information about a module.

Displays information about Module.

@@ -223,7 +223,7 @@
- + Memory allocation information.

Memory allocation information. Equivalent to @@ -232,8 +232,8 @@ - - + + Memory allocation information.

Memory allocation information. Equivalent to @@ -242,8 +242,8 @@ - - + + Compile and load code in a file on all nodes.

Compiles and then loads the code for a file on all nodes. @@ -255,7 +255,7 @@ compile:file(File, Options ++ [report_errors, report_w - + Load module on all nodes.

Loads Module on all nodes.

@@ -263,7 +263,7 @@ compile:file(File, Options ++ [report_errors, report_w
- + Convert X,Y,Z to a pid.

Converts X, Y, @@ -273,7 +273,7 @@ compile:file(File, Options ++ [report_errors, report_w - + Print working directory.

Prints the name of the working directory.

@@ -281,7 +281,7 @@ compile:file(File, Options ++ [report_errors, report_w
- + Quit - shorthand for init:stop().

This function is shorthand for init:stop(), that is, @@ -290,8 +290,8 @@ compile:file(File, Options ++ [report_errors, report_w - - + + Information about registered processes.

regs/0 displays information about all registered @@ -310,7 +310,7 @@ compile:file(File, Options ++ [report_errors, report_w - xm(ModSpec) -> void() + xm(ModSpec) -> void() Cross-reference check a module. ModSpec = Module | Filename @@ -325,7 +325,7 @@ compile:file(File, Options ++ [report_errors, report_w - y(File) -> YeccRet + y(File) -> YeccRet Generate an LALR-1 parser. File = name() @@ -344,7 +344,7 @@ yecc:file(File) - y(File, Options) -> YeccRet + y(File, Options) -> YeccRet Generate an LALR-1 parser. File = name() diff --git a/lib/stdlib/doc/src/calendar.xml b/lib/stdlib/doc/src/calendar.xml index 0d2f3ab3d3..518a085c89 100644 --- a/lib/stdlib/doc/src/calendar.xml +++ b/lib/stdlib/doc/src/calendar.xml @@ -28,7 +28,7 @@ 1996-11-05 B - calendar + calendar Local and universal time, day of the week, date and time conversions. @@ -128,8 +128,8 @@ - - + + Compute the number of days from year 0 up to the specified date. @@ -143,7 +143,7 @@ - + Compute the number of seconds from year 0 up to the specified date and time. @@ -153,8 +153,8 @@ - - + + Compute the day of the week. @@ -169,7 +169,7 @@ - + Compute the date from the number of gregorian days.

Computes the date from the specified number of gregorian days.

@@ -177,7 +177,7 @@
- + Compute the date and time from the number of gregorian seconds. @@ -187,7 +187,7 @@ - + Check if the year is a leap year.

Checks if the specified year is a leap year.

@@ -215,7 +215,7 @@
- + Compute the number of days in a month.

Computes the number of days in a month.

@@ -223,7 +223,7 @@
- + Compute local time.

Returns the local time reported by @@ -232,7 +232,7 @@ - + Convert from local time to universal time (deprecated). @@ -253,7 +253,7 @@ - + Convert from local time to universal time(s).

Converts from local time to Universal Coordinated Time (UTC). @@ -285,7 +285,7 @@ - + Convert now to date and time.

Returns Universal Coordinated Time (UTC) @@ -296,7 +296,7 @@ - + Convert now to local date and time.

Returns local date and time converted from the return value from @@ -306,7 +306,7 @@ - + Convert now to date and time.

Returns Universal Coordinated Time (UTC) @@ -343,7 +343,7 @@ - + Compute days and time from seconds.

Converts a specified number of seconds into days, hours, minutes, @@ -354,7 +354,7 @@ - + Compute time from seconds. @@ -434,7 +434,7 @@ - + Compute the difference between two times (deprecated). @@ -449,7 +449,7 @@ - + Compute the number of seconds since midnight up to the specified time. @@ -460,7 +460,7 @@ - + Compute universal time.

Returns the Universal Coordinated Time (UTC) @@ -470,7 +470,7 @@ - + Convert from universal time to local time.

Converts from Universal Coordinated Time (UTC) to local time. @@ -480,8 +480,8 @@ - - + + Check if a date is valid diff --git a/lib/stdlib/doc/src/dets.xml b/lib/stdlib/doc/src/dets.xml index eb6e32aecf..8e4e002000 100644 --- a/lib/stdlib/doc/src/dets.xml +++ b/lib/stdlib/doc/src/dets.xml @@ -32,7 +32,7 @@ B dets.xml - dets + dets A disk-based term storage.

This module provides a term storage on file. The @@ -188,7 +188,7 @@ - + Return a list of the names of all open Dets tables on this node. @@ -197,7 +197,7 @@ - + Return a chunk of objects stored in a Dets table. @@ -227,7 +227,7 @@ - + Close a Dets table.

Closes a table. Only processes that have opened a table are @@ -239,7 +239,7 @@ - + Delete all objects with a specified key from a Dets table. @@ -249,7 +249,7 @@ - + Delete all objects from a Dets table.

Deletes all objects from a table in almost constant time. @@ -259,7 +259,7 @@ - + Delete a specified object from a Dets table.

Deletes all instances of a specified object from a table. If a @@ -270,7 +270,7 @@ - + Return the first key stored in a Dets table.

Returns the first key stored in table Name @@ -295,8 +295,8 @@ - - + + Fold a function over a Dets table.

Calls Function on successive elements of @@ -309,7 +309,7 @@ - + Replace the objects of a Dets table with the objects of an ETS table. @@ -322,7 +322,7 @@ - + Return information about a Dets table.

Returns information about table Name @@ -354,7 +354,7 @@ - + Return the information associated with a specified item for a Dets table. @@ -455,8 +455,8 @@ - - + + Replace all objects of a Dets table.

Replaces the existing objects of table Name @@ -516,7 +516,7 @@ - + Insert one or more objects into a Dets table.

Inserts one or more objects into the table Name. @@ -527,7 +527,7 @@ - + Insert one or more objects into a Dets table.

Inserts one or more objects into table Name. @@ -539,7 +539,7 @@ - + Test compatibility of chunk data of a table.

Returns true if it would be possible to initialize @@ -554,7 +554,7 @@ - + Test for a Dets table.

Returns true if file Filename @@ -563,7 +563,7 @@ - + Return all objects with a specified key stored in a Dets table. @@ -590,7 +590,7 @@ ok - + Match a chunk of objects stored in a Dets table and return a list of variable bindings. @@ -606,7 +606,7 @@ ok - + Match the objects stored in a Dets table and return a list of variable bindings. @@ -622,7 +622,7 @@ ok - + Match the first chunk of objects stored in a Dets table and return a list of variable bindings. @@ -654,7 +654,7 @@ ok - + Delete all objects that match a given pattern from a Dets table. @@ -667,7 +667,7 @@ ok - + Match a chunk of objects stored in a Dets table and return a list of objects. @@ -683,7 +683,7 @@ ok - + Match the objects stored in a Dets table and return a list of objects. @@ -702,7 +702,7 @@ ok - + Match the first chunk of objects stored in a Dets table and return a list of objects. @@ -735,7 +735,7 @@ ok - + Test for occurrence of a key in a Dets table.

Works like lookup/2, @@ -746,7 +746,7 @@ ok - + Return the next key in a Dets table.

Returns either the key following Key1 in table @@ -760,7 +760,7 @@ ok - + Open an existing Dets table.

Opens an existing table. If the table is not properly closed, @@ -770,7 +770,7 @@ ok - + Open a Dets table.

Opens a table. An empty Dets table is created if no file @@ -872,7 +872,7 @@ ok - + Return the name of the Dets table handled by a pid.

Returns the table name given the pid of a process @@ -883,7 +883,7 @@ ok - + Repair a continuation from select/1 or select/3. @@ -917,7 +917,7 @@ ok - + Fix a Dets table for safe traversal.

If Fix is true, table @@ -945,7 +945,7 @@ ok - + Apply a match specification to some objects stored in a Dets table. @@ -962,7 +962,7 @@ ok - + Apply a match specification to all objects stored in a Dets table. @@ -984,7 +984,7 @@ ok - + Apply a match specification to the first chunk of objects stored in a Dets table. @@ -1019,7 +1019,7 @@ ok - + Delete all objects that match a given pattern from a Dets table. @@ -1036,7 +1036,7 @@ ok - + Return the list of objects associated with a slot of a Dets table. @@ -1049,7 +1049,7 @@ ok - + Ensure that all updates made to a Dets table are written to disk. @@ -1064,8 +1064,8 @@ ok - - + + Return a QLC query handle.

Returns a Query List @@ -1140,7 +1140,7 @@ true - + Insert all objects of a Dets table into an ETS table. @@ -1153,7 +1153,7 @@ true - + Apply a function to all or some objects stored in a Dets table. @@ -1192,7 +1192,7 @@ fun(X) -> {continue, X} end. - + Update a counter object stored in a Dets table. diff --git a/lib/stdlib/doc/src/dict.xml b/lib/stdlib/doc/src/dict.xml index e35b64d5e2..95a98cef12 100644 --- a/lib/stdlib/doc/src/dict.xml +++ b/lib/stdlib/doc/src/dict.xml @@ -28,7 +28,7 @@ 1997-01-15 B - dict + dict Key-value dictionary.

This module provides a Key-Value dictionary. @@ -55,7 +55,7 @@ - + Append a value to keys in a dictionary.

Appends a new Value to the current list @@ -65,7 +65,7 @@ - + Append new values to keys in a dictionary.

Appends a list of values ValList to @@ -77,7 +77,7 @@ - + Erase a key from a dictionary.

Erases all items with a given key from a dictionary.

@@ -85,7 +85,7 @@
- + Look up values in a dictionary.

Returns the value associated with Key @@ -98,7 +98,7 @@ - + Return all keys in a dictionary.

Returns a list of all keys in dictionary Dict.

@@ -116,7 +116,7 @@
- + Select elements that satisfy a predicate.

Dict2 is a dictionary of all keys and values in @@ -127,7 +127,7 @@ - + Search for a key in a dictionary.

Searches for a key in dictionary Dict. Returns @@ -139,7 +139,7 @@ - + Fold a function over a dictionary.

Calls Fun on successive keys and values of @@ -153,7 +153,7 @@ - + Convert a list of pairs to a dictionary.

Converts the Key-Value list @@ -171,7 +171,7 @@ - + Test if a key is in a dictionary.

Tests if Key is contained in @@ -180,7 +180,7 @@ - + Map a function over a dictionary.

Calls Fun on successive keys and values @@ -190,7 +190,7 @@ - + Merge two dictionaries.

Merges two dictionaries, Dict1 and @@ -209,7 +209,7 @@ merge(Fun, D1, D2) -> - + Create a dictionary.

Creates a new dictionary.

@@ -217,7 +217,7 @@ merge(Fun, D1, D2) ->
- + Return the number of elements in a dictionary.

Returns the number of elements in dictionary @@ -226,7 +226,7 @@ merge(Fun, D1, D2) -> - + Store a value in a dictionary.

Stores a Key-Value pair in @@ -237,7 +237,7 @@ merge(Fun, D1, D2) -> - + Convert a dictionary to a list of pairs.

Converts dictionary Dict to a list representation.

@@ -245,7 +245,7 @@ merge(Fun, D1, D2) ->
- + Update a value in a dictionary.

Updates a value in a dictionary by calling Fun on @@ -255,7 +255,7 @@ merge(Fun, D1, D2) -> - + Update a value in a dictionary.

Updates a value in a dictionary by calling Fun on @@ -269,7 +269,7 @@ append(Key, Val, D) -> - + Increment a value in a dictionary.

Adds Increment to the value associated with diff --git a/lib/stdlib/doc/src/digraph.xml b/lib/stdlib/doc/src/digraph.xml index a5252b443b..cf2c0844c9 100644 --- a/lib/stdlib/doc/src/digraph.xml +++ b/lib/stdlib/doc/src/digraph.xml @@ -32,7 +32,7 @@ C digraph.xml - digraph + digraph Directed graphs.

This module provides a version of labeled @@ -144,9 +144,9 @@ - - - + + + Add an edge to a digraph. @@ -183,9 +183,9 @@ - - - + + + Add or modify a vertex of a digraph.

add_vertex/3 creates (or modifies) vertex @@ -204,7 +204,7 @@ - + Delete an edge from a digraph.

Deletes edge E from digraph @@ -213,7 +213,7 @@ - + Delete edges from a digraph.

Deletes the edges in list Edges from digraph @@ -222,7 +222,7 @@ - + Delete paths from a digraph.

Deletes edges from digraph G until there are no @@ -252,7 +252,7 @@ - + Delete a vertex from a digraph.

Deletes vertex V from digraph @@ -265,7 +265,7 @@ - + Delete vertices from a digraph.

Deletes the vertices in list Vertices from @@ -274,7 +274,7 @@ - + Delete a digraph.

Deletes digraph G. This call is important @@ -285,7 +285,7 @@ - + Return the vertices and the label of an edge of a digraph. @@ -303,7 +303,7 @@ - + Return all edges of a digraph.

Returns a list of all edges of digraph G, in @@ -312,7 +312,7 @@ - + Return the edges emanating from or incident on a vertex of a digraph. @@ -324,7 +324,7 @@ - + Find one cycle in a digraph.

If a simple cycle of @@ -341,7 +341,7 @@ - + Find one path in a digraph.

Tries to find @@ -357,7 +357,7 @@ - + Find one short cycle in a digraph.

Tries to find an as short as possible @@ -375,7 +375,7 @@ - + Find one short path in a digraph.

Tries to find an as short as possible @@ -392,7 +392,7 @@ - + Return the in-degree of a vertex of a digraph.

Returns the in-degree of @@ -401,7 +401,7 @@ - + Return all edges incident on a vertex of a digraph.

Returns a list of all @@ -412,7 +412,7 @@ - + Return all in-neighbors of a vertex of a digraph.

Returns a list of @@ -423,7 +423,7 @@ - + Return information about a digraph. @@ -453,7 +453,7 @@ - + Return a protected empty digraph, where cycles are allowed. @@ -462,7 +462,7 @@ - + Create a new empty digraph. @@ -492,7 +492,7 @@ - + Return the number of edges of a digraph.

Returns the number of edges of digraph G.

@@ -500,7 +500,7 @@
- + Return the number of vertices of a digraph.

Returns the number of vertices of digraph G.

@@ -508,7 +508,7 @@
- + Return the out-degree of a vertex of a digraph.

Returns the out-degree of @@ -517,7 +517,7 @@ - + Return all edges emanating from a vertex of a digraph. @@ -529,7 +529,7 @@ - + Return all out-neighbors of a vertex of a digraph.

Returns a list of @@ -540,7 +540,7 @@ - + Return the label of a vertex of a digraph.

Returns {VLabel}, @@ -553,7 +553,7 @@ - + Return all vertices of a digraph.

Returns a list of all vertices of digraph G, in diff --git a/lib/stdlib/doc/src/digraph_utils.xml b/lib/stdlib/doc/src/digraph_utils.xml index cb316e5b93..13b0aaad9e 100644 --- a/lib/stdlib/doc/src/digraph_utils.xml +++ b/lib/stdlib/doc/src/digraph_utils.xml @@ -32,7 +32,7 @@ PA1 digraph_utils.xml - digraph_utils + digraph_utils Algorithms for directed graphs.

This module provides algorithms based on depth-first traversal of @@ -154,7 +154,7 @@ - + Check if a digraph is an arborescence.

Returns {yes, Root} if Root @@ -164,7 +164,7 @@ - + Return the components of a digraph.

Returns a list @@ -177,7 +177,7 @@ - + Return a condensed graph of a digraph.

Creates a digraph where the vertices are @@ -202,7 +202,7 @@ - + Return the cyclic strong components of a digraph.

Returns a list of strongly @@ -218,7 +218,7 @@ - + Check if a digraph is acyclic.

Returns true if and only if digraph @@ -228,7 +228,7 @@ - + Check if a digraph is an arborescence.

Returns true if and only if digraph @@ -238,7 +238,7 @@ - + Check if a digraph is a tree.

Returns true if and only if digraph @@ -248,7 +248,7 @@ - + Return the vertices of a digraph included in some loop. @@ -258,7 +258,7 @@ - + Return the vertices of a digraph in postorder.

Returns all vertices of digraph Digraph. @@ -273,7 +273,7 @@ - + Return the vertices of a digraph in preorder.

Returns all vertices of digraph Digraph. @@ -285,7 +285,7 @@ - + Return the vertices reachable from some vertices of a digraph. @@ -300,7 +300,7 @@ - + Return the neighbors reachable from some vertices of a digraph. @@ -316,7 +316,7 @@ - + Return the vertices that reach some vertices of a digraph. @@ -330,7 +330,7 @@ - + Return the neighbors that reach some vertices of a digraph. @@ -345,7 +345,7 @@ - + Return the strong components of a digraph.

Returns a list of strongly @@ -359,8 +359,8 @@ - - + + Return a subgraph of a digraph.

Creates a maximal subgraph @@ -387,7 +387,7 @@ - + Return a topological sorting of the vertices of a digraph. diff --git a/lib/stdlib/doc/src/epp.xml b/lib/stdlib/doc/src/epp.xml index d9eefc19e0..110c1cea2c 100644 --- a/lib/stdlib/doc/src/epp.xml +++ b/lib/stdlib/doc/src/epp.xml @@ -32,7 +32,7 @@ B epp.xml - epp + epp An Erlang code preprocessor.

The Erlang code preprocessor includes functions that are used by the @@ -76,7 +76,7 @@ - + Close the preprocessing of the file associated with Epp. @@ -136,7 +136,7 @@ - + Open a file for preprocessing.

Equivalent to @@ -145,7 +145,7 @@ - + Open a file for preprocessing.

Equivalent to epp:open([{name, FileName}, {includes, IncludePath}, @@ -154,7 +154,7 @@ - + Return the next Erlang form from the opened Erlang source file. @@ -185,7 +185,7 @@ - + Preprocess and parse an Erlang source file.

Equivalent to epp:parse_file(FileName, [{includes, IncludePath}, diff --git a/lib/stdlib/doc/src/erl_eval.xml b/lib/stdlib/doc/src/erl_eval.xml index 1c0f7f062f..813cbecd89 100644 --- a/lib/stdlib/doc/src/erl_eval.xml +++ b/lib/stdlib/doc/src/erl_eval.xml @@ -32,7 +32,7 @@ B erl_eval.xml - erl_eval + erl_eval The Erlang meta interpreter.

This module provides an interpreter for Erlang expressions. The @@ -96,7 +96,7 @@ - + Add a binding.

Adds binding Name=Value @@ -106,7 +106,7 @@ - + Return bindings.

Returns the binding of Name @@ -115,7 +115,7 @@ - + Return bindings.

Returns the list of bindings contained in the binding @@ -124,7 +124,7 @@ - + Delete a binding.

Removes the binding of Name @@ -134,10 +134,10 @@ - - - - + + + + Evaluate expression.

Evaluates Expression with the set of bindings @@ -157,9 +157,9 @@ - - - + + + Evaluate a list of expressions.

Evaluates a list of expressions in parallel, using the same @@ -174,9 +174,9 @@ - - - + + + Evaluate expressions.

Evaluates Expressions with the set of bindings @@ -197,7 +197,7 @@ - + Return a bindings structure.

Returns an empty binding structure.

diff --git a/lib/stdlib/doc/src/erl_expand_records.xml b/lib/stdlib/doc/src/erl_expand_records.xml index b6aa75ed03..20e5f1960b 100644 --- a/lib/stdlib/doc/src/erl_expand_records.xml +++ b/lib/stdlib/doc/src/erl_expand_records.xml @@ -34,7 +34,7 @@ PA1 erl_expand_records.xml - erl_expand_records + erl_expand_records Expands records in a module.

This module expands records in a module.

@@ -42,7 +42,7 @@ - + Expand all records in a module.

Expands all records in a module to use explicit tuple diff --git a/lib/stdlib/doc/src/erl_id_trans.xml b/lib/stdlib/doc/src/erl_id_trans.xml index 16952a9582..ec66842ac0 100644 --- a/lib/stdlib/doc/src/erl_id_trans.xml +++ b/lib/stdlib/doc/src/erl_id_trans.xml @@ -34,7 +34,7 @@ B erl_id_trans.xml - erl_id_trans + erl_id_trans An identity parse transform.

This module performs an identity parse transformation of Erlang code. @@ -46,7 +46,7 @@ - parse_transform(Forms, Options) -> Forms + parse_transform(Forms, Options) -> Forms Transform Erlang forms. Forms = [erl_parse:abstract_form() diff --git a/lib/stdlib/doc/src/erl_internal.xml b/lib/stdlib/doc/src/erl_internal.xml index 45264e82a8..77551ffed7 100644 --- a/lib/stdlib/doc/src/erl_internal.xml +++ b/lib/stdlib/doc/src/erl_internal.xml @@ -34,7 +34,7 @@ B erl_internal.xml - erl_internal + erl_internal Internal Erlang definitions.

This module defines Erlang BIFs, guard tests, and operators. @@ -54,7 +54,7 @@ - + Test for an arithmetic operator.

Returns true if OpName/Arity @@ -63,7 +63,7 @@ - + Test for an Erlang BIF.

Returns true if Name/Arity @@ -73,7 +73,7 @@ - + Test for a Boolean operator.

Returns true if OpName/Arity @@ -82,7 +82,7 @@ - + Test for a comparison operator.

Returns true if OpName/Arity @@ -91,7 +91,7 @@ - + Test for an Erlang BIF allowed in guards.

Returns true if Name/Arity is @@ -100,7 +100,7 @@ - + Test for a list operator.

Returns true if OpName/Arity @@ -109,7 +109,7 @@ - + Return operator type.

Returns the Type of operator that @@ -120,7 +120,7 @@ - + Test for a send operator.

Returns true if OpName/Arity @@ -129,7 +129,7 @@ - + Test for a valid type test.

Returns true if Name/Arity is diff --git a/lib/stdlib/doc/src/erl_lint.xml b/lib/stdlib/doc/src/erl_lint.xml index 77cb7a9916..12eaafc3a8 100644 --- a/lib/stdlib/doc/src/erl_lint.xml +++ b/lib/stdlib/doc/src/erl_lint.xml @@ -32,7 +32,7 @@ B erl_lint.xml - erl_lint + erl_lint The Erlang code linter.

This module is used to check Erlang code for illegal syntax and @@ -78,7 +78,7 @@ - + Format an error descriptor.

Takes an ErrorDescriptor and returns a string @@ -90,7 +90,7 @@ - + Test for a guard test.

Tests if Expr is a legal guard test. @@ -102,9 +102,9 @@ - - - + + + Check a module for errors.

Checks all the forms in a module for errors. It returns:

diff --git a/lib/stdlib/doc/src/erl_parse.xml b/lib/stdlib/doc/src/erl_parse.xml index dd15d495a4..8142e5c0aa 100644 --- a/lib/stdlib/doc/src/erl_parse.xml +++ b/lib/stdlib/doc/src/erl_parse.xml @@ -32,7 +32,7 @@ B erl_parse.xml - erl_parse + erl_parse The Erlang parser.

This module is the basic Erlang parser that converts tokens into @@ -89,7 +89,7 @@ - + Convert an Erlang term into an abstract form.

Converts the Erlang data structure Data into an @@ -171,7 +171,7 @@ - format_error(ErrorDescriptor) -> Chars + format_error(ErrorDescriptor) -> Chars Format an error descriptor. ErrorDescriptor = - + Convert abstract form to an Erlang term.

Converts the abstract form AbsTerm of a @@ -247,7 +247,7 @@ - + Parse Erlang expressions.

Parses Tokens as if it was a list of expressions. @@ -267,7 +267,7 @@ - + Parse an Erlang form.

Parses Tokens as if it was a form. Returns one @@ -287,7 +287,7 @@ - + Parse an Erlang term.

Parses Tokens as if it was a term. Returns @@ -307,8 +307,8 @@ - - + + Generate a list of tokens for an expression.

Generates a list of tokens representing the abstract diff --git a/lib/stdlib/doc/src/erl_pp.xml b/lib/stdlib/doc/src/erl_pp.xml index 77a7f1e8d1..f1c3aa5a41 100644 --- a/lib/stdlib/doc/src/erl_pp.xml +++ b/lib/stdlib/doc/src/erl_pp.xml @@ -34,7 +34,7 @@ B erl_pp.xml - erl_pp + erl_pp The Erlang pretty printer.

The functions in this module are used to generate @@ -73,8 +73,8 @@ - - + + Pretty print an attribute.

Same as form/1,2, @@ -83,10 +83,10 @@ - - - - + + + + Pretty print one Expression.

Prints one expression. It is useful for implementing hooks (see @@ -96,9 +96,9 @@ - - - + + + Pretty print Expressions.

Same as form/1,2, @@ -108,8 +108,8 @@ - - + + Pretty print a form.

Pretty prints a @@ -120,8 +120,8 @@ - - + + Pretty print a function.

Same as form/1,2, @@ -130,8 +130,8 @@ - - + + Pretty print a guard.

Same as form/1,2, diff --git a/lib/stdlib/doc/src/erl_scan.xml b/lib/stdlib/doc/src/erl_scan.xml index 6507f23dab..38111f73bc 100644 --- a/lib/stdlib/doc/src/erl_scan.xml +++ b/lib/stdlib/doc/src/erl_scan.xml @@ -32,7 +32,7 @@ B erl_scan.xml - erl_scan + erl_scan The Erlang token scanner.

This module contains functions for tokenizing (scanning) characters into @@ -101,7 +101,7 @@ - + Format an error descriptor.

Uses an ErrorDescriptor and returns a string @@ -131,7 +131,7 @@ - + Test for a reserved word.

Returns true if Atom is an @@ -140,9 +140,9 @@ - - - + + + Scan a string and return the Erlang tokens.

Takes the list of characters String and tries to @@ -247,8 +247,8 @@ - - + + Re-entrant scanner. diff --git a/lib/stdlib/doc/src/erl_tar.xml b/lib/stdlib/doc/src/erl_tar.xml index 0a0b5fa115..ea8173748a 100644 --- a/lib/stdlib/doc/src/erl_tar.xml +++ b/lib/stdlib/doc/src/erl_tar.xml @@ -32,7 +32,7 @@ A erl_tar.xml - erl_tar + erl_tar Unix 'tar' utility for reading and writing tar archives. @@ -127,7 +127,7 @@ - add(TarDescriptor, Filename, Options) -> RetValue + add(TarDescriptor, Filename, Options) -> RetValue Add a file to an open tar file. TarDescriptor = term() @@ -211,7 +211,7 @@ - add(TarDescriptor, FilenameOrBin, NameInArchive, Options) -> + add(TarDescriptor, FilenameOrBin, NameInArchive, Options) -> RetValue Add a file to an open tar file. @@ -233,7 +233,7 @@ - close(TarDescriptor) + close(TarDescriptor) Close an open tar file. TarDescriptor = term() @@ -245,7 +245,7 @@ - create(Name, FileList) ->RetValue + create(Name, FileList) ->RetValue Create a tar archive. Name = filename() @@ -264,7 +264,7 @@ - create(Name, FileList, OptionList) + create(Name, FileList, OptionList) Create a tar archive with options. Name = filename() @@ -315,7 +315,7 @@ - extract(Name) -> RetValue + extract(Name) -> RetValue Extract all files from a tar file. Name = filename() | {binary,binary()} | {file,Fd} @@ -339,7 +339,7 @@ - extract(Name, OptionList) + extract(Name, OptionList) Extract files from a tar file. Name = filename() | {binary,binary()} | {file,Fd} @@ -411,7 +411,7 @@ - format_error(Reason) -> string() + format_error(Reason) -> string() Convert error term to a readable string. Reason = term() @@ -518,7 +518,7 @@ erl_tar:close(TarDesc) - open(Name, OpenModeList) -> RetValue + open(Name, OpenModeList) -> RetValue Open a tar file for writing. Name = filename() @@ -565,7 +565,7 @@ erl_tar:close(TarDesc) - table(Name) -> RetValue + table(Name) -> RetValue Retrieve the name of all files in a tar file. Name = filename()|{binary,binary()}|{file,file_descriptor()} @@ -578,7 +578,7 @@ erl_tar:close(TarDesc) - table(Name, Options) + table(Name, Options) Retrieve name and information of all files in a tar file. @@ -590,7 +590,7 @@ erl_tar:close(TarDesc) - t(Name) + t(Name) Print the name of each file in a tar file. Name = filename()|{binary,binary()}|{file,file_descriptor()} @@ -602,7 +602,7 @@ erl_tar:close(TarDesc) - tt(Name) + tt(Name) Print name and information for each file in a tar file. diff --git a/lib/stdlib/doc/src/ets.xml b/lib/stdlib/doc/src/ets.xml index 98c5c39f2b..70d1aaa74d 100644 --- a/lib/stdlib/doc/src/ets.xml +++ b/lib/stdlib/doc/src/ets.xml @@ -28,7 +28,7 @@ - ets + ets Built-in term storage.

This module is an interface to the Erlang built-in term storage @@ -207,7 +207,7 @@ - + Return a list of all ETS tables.

Returns a list of all tables at the node. Named tables are @@ -222,7 +222,7 @@ - + Delete an entire ETS table.

Deletes the entire table Tab.

@@ -230,7 +230,7 @@
- + Delete all objects with a specified key from an ETS table. @@ -240,7 +240,7 @@ - + Delete all objects in an ETS table.

Delete all objects in the ETS table Tab. @@ -250,7 +250,7 @@ - + Deletes a specific from an ETS table.

Delete the exact object Object from the @@ -262,7 +262,7 @@ - + Read an ETS table from a file.

Reads a file produced by @@ -274,7 +274,7 @@ - + Read an ETS table from a file.

Reads a file produced by @@ -306,7 +306,7 @@ - + Return the first key in an ETS table.

Returns the first key Key in table @@ -321,7 +321,7 @@ - + Fold a function over an ETS table.

Acc0 is returned if the table is empty. @@ -337,7 +337,7 @@ - + Fold a function over an ETS table.

Acc0 is returned if the table is empty. @@ -353,7 +353,7 @@ - + Fill an ETS table with objects from a Dets table. @@ -367,7 +367,7 @@ - + Pseudo function that transforms fun syntax to a match specification. @@ -436,7 +436,7 @@ Error: fun containing local Erlang function calls - + Change owner of a table.

Make process Pid the new owner of table @@ -454,7 +454,7 @@ Error: fun containing local Erlang function calls - + Display information about all ETS tables on a terminal. @@ -463,7 +463,7 @@ Error: fun containing local Erlang function calls - + Browse an ETS table on a terminal.

Browses table Tab on a terminal.

@@ -471,7 +471,7 @@ Error: fun containing local Erlang function calls
- + Return information about an table.

Returns information about table Tab as a list of @@ -547,7 +547,7 @@ Error: fun containing local Erlang function calls - + Return the information associated with the specified item for an ETS table. @@ -619,7 +619,7 @@ Error: fun containing local Erlang function calls - + Replace all objects of an ETS table.

Replaces the existing objects of table Tab with @@ -649,7 +649,7 @@ Error: fun containing local Erlang function calls - + Insert an object into an ETS table.

Inserts the object or all of the objects in list @@ -681,7 +681,7 @@ Error: fun containing local Erlang function calls - + Insert an object into an ETS table if the key is not already present. @@ -700,7 +700,7 @@ Error: fun containing local Erlang function calls - + Check if an Erlang term is the result of match_spec_compile. @@ -732,7 +732,7 @@ ets:is_compiled_ms(Broken). - + Return the last key in an ETS table of type ordered_set. @@ -747,7 +747,7 @@ ets:is_compiled_ms(Broken). - + Return all objects with a specified key in an ETS table. @@ -787,7 +787,7 @@ ets:is_compiled_ms(Broken). - + Return the Pos:th element of all objects with a specified key in an ETS table. @@ -810,7 +810,7 @@ ets:is_compiled_ms(Broken). - + Continues matching objects in an ETS table.

Continues a match started with @@ -824,7 +824,7 @@ ets:is_compiled_ms(Broken). - + Match the objects in an ETS table against a pattern. @@ -856,7 +856,7 @@ ets:is_compiled_ms(Broken). - + Match the objects in an ETS table against a pattern and return part of the answers. @@ -875,7 +875,7 @@ ets:is_compiled_ms(Broken). - + Delete all objects that match a specified pattern from an ETS table. @@ -886,7 +886,7 @@ ets:is_compiled_ms(Broken). - + Continues matching objects in an ETS table.

Continues a match started with @@ -901,7 +901,7 @@ ets:is_compiled_ms(Broken). - + Match the objects in an ETS table against a pattern. @@ -920,7 +920,7 @@ ets:is_compiled_ms(Broken). - + Match the objects in an ETS table against a pattern and return part of the answers. @@ -940,7 +940,7 @@ ets:is_compiled_ms(Broken). - + Compile a match specification into its internal representation. @@ -968,7 +968,7 @@ ets:is_compiled_ms(Broken). - + Perform matching, using a compiled match specification on a list of terms. @@ -1005,7 +1005,7 @@ ets:select(Table, MatchSpec), - + Tests for occurrence of a key in an ETS table.

Works like lookup/2, @@ -1016,7 +1016,7 @@ ets:select(Table, MatchSpec), - + Create a new ETS table.

Creates a new table and returns a table identifier that can @@ -1180,7 +1180,7 @@ ets:select(Table, MatchSpec), - + Return the next key in an ETS table.

Returns the next key Key2, following key @@ -1202,7 +1202,7 @@ ets:select(Table, MatchSpec), - + Return the previous key in an ETS table of type ordered_set. @@ -1218,7 +1218,7 @@ ets:select(Table, MatchSpec), - + Rename a named ETS table.

Renames the named table Tab to the new name @@ -1228,7 +1228,7 @@ ets:select(Table, MatchSpec), - + Repair a continuation from ets:select/1 or ets:select/3 that has passed through external representation. @@ -1283,7 +1283,7 @@ ets:select(ets:repair_continuation(Broken,MS)). - + Fix an ETS table for safe traversal.

Fixes a table of type set, bag, or @@ -1339,7 +1339,7 @@ clean_all_with_value(Tab,X,Key) -> - + Continue matching objects in an ETS table.

Continues a match started with @@ -1353,7 +1353,7 @@ clean_all_with_value(Tab,X,Key) -> - + Match the objects in an ETS table against a match specification. @@ -1448,7 +1448,7 @@ is_integer(X), is_integer(Y), X + Y < 4711]]> - + Match the objects in an ETS table against a match specification and return part of the answers. @@ -1467,7 +1467,7 @@ is_integer(X), is_integer(Y), X + Y < 4711]]> - + Match the objects in an ETS table against a match specification and return the number of objects for which the match specification returned true. @@ -1486,7 +1486,7 @@ is_integer(X), is_integer(Y), X + Y < 4711]]> - + Match the objects in an ETS table against a match specification and delete objects where the match specification returns true. @@ -1612,7 +1612,7 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])), - + Set table options.

Sets table options. The only allowed option to be set after the @@ -1623,7 +1623,7 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])), - + Return all objects in a specified slot of an ETS table. @@ -1648,7 +1648,7 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])), - + Dump an ETS table to a file.

Dumps table Tab to file @@ -1659,7 +1659,7 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])), - + Dump an ETS table to a file.

Dumps table Tab to file @@ -1706,7 +1706,7 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])), - + Return a list of all objects in an ETS table.

Returns a list of all objects in table Tab.

@@ -1714,7 +1714,7 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])),
- + Return a list of all objects in an ETS table.

Returns information about the table dumped to file by @@ -1792,8 +1792,8 @@ Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])), - - + + Return a QLC query handle.

Returns a Query List @@ -1884,7 +1884,7 @@ true - + Test a match specification for use in select/2. @@ -1911,7 +1911,7 @@ true - + Fill a Dets table with objects from an ETS table. @@ -1922,11 +1922,11 @@ true - + - + - + Update a counter object in an ETS table. @@ -2006,8 +2006,8 @@ true - - + + Update the Pos:th element of the object with a specified key in an ETS table. diff --git a/lib/stdlib/doc/src/file_sorter.xml b/lib/stdlib/doc/src/file_sorter.xml index e988d58c2f..942d98fe61 100644 --- a/lib/stdlib/doc/src/file_sorter.xml +++ b/lib/stdlib/doc/src/file_sorter.xml @@ -32,7 +32,7 @@ PA1 file_sorter.xml - file_sorter + file_sorter File sorter.

This module contains functions for sorting terms on files, merging @@ -334,8 +334,8 @@ output(L) -> - - + + Check whether terms on files are sorted.

Checks files for sortedness. If a file is not sorted, the @@ -347,8 +347,8 @@ output(L) -> - - + + Check whether terms on files are sorted by key.

Checks files for sortedness. If a file is not sorted, the @@ -360,8 +360,8 @@ output(L) -> - - + + Merge terms on files by key.

Merges tuples on files. Each input file is assumed to be @@ -372,7 +372,7 @@ output(L) -> - + Sort terms on files by key.

Sorts tuples on files.

@@ -382,8 +382,8 @@ output(L) ->
- - + + Sort terms on files by key.

Sorts tuples on files. The sort is performed on the @@ -397,8 +397,8 @@ output(L) -> - - + + Merge terms on files.

Merges terms on files. Each input file is assumed to be @@ -409,7 +409,7 @@ output(L) -> - + Sort terms on files.

Sorts terms on files.

@@ -419,8 +419,8 @@ output(L) ->
- - + + Sort terms on files.

Sorts terms on files.

diff --git a/lib/stdlib/doc/src/filelib.xml b/lib/stdlib/doc/src/filelib.xml index 790f289ae5..5df415834f 100644 --- a/lib/stdlib/doc/src/filelib.xml +++ b/lib/stdlib/doc/src/filelib.xml @@ -32,7 +32,7 @@ A filelib.xml - filelib + filelib File utilities, such as wildcard matching of filenames. @@ -94,7 +94,7 @@ - + Ensure that all parent directories for a file or directory exist. @@ -108,7 +108,7 @@ - + Return the size in bytes of a file.

Returns the size of the specified file.

@@ -116,7 +116,7 @@
- + Fold over all files matching a regular expression.

Folds function Fun over all (regular) files @@ -142,7 +142,7 @@ - + Test whether Name refers to a directory.

Returns true if Name @@ -151,7 +151,7 @@ - + Test whether Name refers to a file or directory. @@ -161,7 +161,7 @@ - + Test whether Name refers to a (regular) file.

Returns true if Name @@ -170,7 +170,7 @@ - + Return the local date and time when a file was last modified. @@ -180,7 +180,7 @@ - + Match filenames using Unix-style wildcards.

Returns a list of all files that match Unix-style wildcard string @@ -252,7 +252,7 @@ filelib:wildcard("lib/**/*.{erl,hrl}") - + Match filenames using Unix-style wildcards starting at a specified directory. diff --git a/lib/stdlib/doc/src/filename.xml b/lib/stdlib/doc/src/filename.xml index e4cca2074a..ae42846c6b 100644 --- a/lib/stdlib/doc/src/filename.xml +++ b/lib/stdlib/doc/src/filename.xml @@ -28,7 +28,7 @@ 1997-11-13 B - filename + filename Filename manipulation functions.

This module provides functions @@ -87,7 +87,7 @@ - + Convert a filename to an absolute name, relative the working directory. @@ -119,7 +119,7 @@ - + Convert a filename to an absolute name, relative a specified directory. @@ -130,7 +130,7 @@ - + Join an absolute directory with a relative filename.

Joins an absolute directory with a relative filename. Similar to @@ -314,7 +314,7 @@ true - + Return the last component of a filename.

Returns the last component of Filename, or @@ -332,7 +332,7 @@ true - + Return the last component of a filename, stripped of the specified extension. @@ -357,7 +357,7 @@ true - + Return the directory part of a path name.

Returns the directory part of Filename.

@@ -374,7 +374,7 @@ true
- + Return the file extension.

Returns the file extension of Filename, @@ -390,8 +390,8 @@ true - - + + Find the filename and compiler options for a module.

Finds the source filename and compiler options for a module. @@ -438,7 +438,7 @@ true - + Convert a filename to a flat string.

Converts a possibly deep list filename consisting of @@ -448,7 +448,7 @@ true - + Join a list of filename components with directory separators. @@ -476,7 +476,7 @@ true - + Join two filename components with directory separators. @@ -487,7 +487,7 @@ true - + Return the native form of a file path.

Converts Path to a form accepted by the command @@ -506,7 +506,7 @@ true - + Return the path type.

Returns the path type, which is one of the following:

@@ -536,8 +536,8 @@ true
- - + + Remove a filename extension.

Removes a filename extension. rootname/2 works as @@ -584,7 +584,7 @@ unsafe - + Split a filename into its path components.

Returns a list whose elements are the path components of diff --git a/lib/stdlib/doc/src/gb_sets.xml b/lib/stdlib/doc/src/gb_sets.xml index 16db0906f5..a9596c6e4d 100644 --- a/lib/stdlib/doc/src/gb_sets.xml +++ b/lib/stdlib/doc/src/gb_sets.xml @@ -28,7 +28,7 @@ - gb_sets + gb_sets General balanced trees.

This module provides ordered sets using Prof. Arne Andersson's @@ -123,8 +123,8 @@ - - + + Add a (possibly existing) element to a set.

Returns a new set formed from Set1 with @@ -135,7 +135,7 @@ - + Rebalance tree representation of a set.

Rebalances the tree representation of Set1. @@ -149,7 +149,7 @@ - + Remove a (possibly non-existing) element from a set.

Returns a new set formed from Set1 with @@ -160,7 +160,7 @@ - + Remove an element from a set.

Returns a new set formed from Set1 with @@ -171,7 +171,7 @@ - + Remove a (possibly non-existing) element from a set.

Returns a new set formed from Set1 with @@ -182,7 +182,7 @@ - + Return the difference of two sets.

Returns only the elements of Set1 that are not @@ -191,7 +191,7 @@ - + Return an empty set.

Returns a new empty set.

@@ -199,7 +199,7 @@
- + Filter set elements.

Filters elements in Set1 using predicate function @@ -208,7 +208,7 @@ - + Fold over set elements.

Folds Function over every element in @@ -218,7 +218,7 @@ - + Convert a list into a set.

Returns a set of the elements in List, where @@ -227,7 +227,7 @@ - + Make a set from an ordset list.

Turns an ordered-set list List into a set. @@ -236,7 +236,7 @@ - + Add a new element to a set.

Returns a new set formed from Set1 with @@ -247,7 +247,7 @@ - + Return the intersection of a list of sets.

Returns the intersection of the non-empty list of sets.

@@ -255,7 +255,7 @@
- + Return the intersection of two sets.

Returns the intersection of Set1 and @@ -264,7 +264,7 @@ - + Check whether two sets are disjoint.

Returns true if Set1 and @@ -274,7 +274,7 @@ - + Test for membership of a set.

Returns true if Element is an element of @@ -283,7 +283,7 @@ - + Test for empty set.

Returns true if Set is an empty set, @@ -292,7 +292,7 @@ - + Test for membership of a set.

Returns true if Element is an element of @@ -301,7 +301,7 @@ - + Test for a set.

Returns true if Term appears to be a set, @@ -310,7 +310,7 @@ - + Test for subset.

Returns true when every element of Set1 is @@ -319,7 +319,7 @@ - + Return an iterator for a set.

Returns an iterator that can be used for traversing the entries of @@ -351,7 +351,7 @@ - + Return largest element.

Returns the largest element in Set. Assumes that @@ -360,7 +360,7 @@ - + Return an empty set.

Returns a new empty set.

@@ -368,7 +368,7 @@
- + Traverse a set with an iterator.

Returns {Element, Iter2}, where @@ -381,7 +381,7 @@ - + Return a set with one element.

Returns a set containing only element Element. @@ -390,7 +390,7 @@ - + Return the number of elements in a set.

Returns the number of elements in Set.

@@ -398,7 +398,7 @@
- + Return smallest element.

Returns the smallest element in Set. Assumes that @@ -407,7 +407,7 @@ - + Return the difference of two sets.

Returns only the elements of Set1 that are not @@ -416,7 +416,7 @@ - + Extract largest element.

Returns {Element, Set2}, where @@ -428,7 +428,7 @@ - + Extract smallest element.

Returns {Element, Set2}, where @@ -440,7 +440,7 @@ - + Convert a set into a list.

Returns the elements of Set as a list.

@@ -448,7 +448,7 @@
- + Return the union of a list of sets.

Returns the merged (union) set of the list of sets.

@@ -456,7 +456,7 @@
- + Return the union of two sets.

Returns the merged (union) set of Set1 and diff --git a/lib/stdlib/doc/src/gb_trees.xml b/lib/stdlib/doc/src/gb_trees.xml index 3b55c2c75d..570c9c7cb6 100644 --- a/lib/stdlib/doc/src/gb_trees.xml +++ b/lib/stdlib/doc/src/gb_trees.xml @@ -28,7 +28,7 @@ - gb_trees + gb_trees General balanced trees.

This module provides Prof. Arne Andersson's General @@ -75,7 +75,7 @@ - + Rebalance a tree.

Rebalances Tree1. Notice that this is @@ -88,7 +88,7 @@ - + Remove a node from a tree.

Removes the node with key Key from @@ -98,7 +98,7 @@ - + Remove a (possibly non-existing) node from a tree.

Removes the node with key Key from @@ -131,7 +131,7 @@ - + Return an empty tree.

Returns a new empty tree.

@@ -139,7 +139,7 @@
- + Insert or update key with value in a tree.

Inserts Key with value Value @@ -151,7 +151,7 @@ - + Make a tree from an orddict.

Turns an ordered list List of key-value tuples @@ -160,7 +160,7 @@ - + Look up a key in a tree, if present.

Retrieves the value stored with Key in @@ -171,7 +171,7 @@ - + Insert a new key and value in a tree.

Inserts Key with value Value @@ -182,7 +182,7 @@ - + Test for membership of a tree.

Returns true if Key is present in @@ -191,7 +191,7 @@ - + Test for empty tree.

Returns true if Tree is an empty tree, @@ -200,7 +200,7 @@ - + Return an iterator for a tree.

Returns an iterator that can be used for traversing the @@ -233,7 +233,7 @@ - + Return a list of the keys in a tree.

Returns the keys in Tree as an ordered list.

@@ -241,7 +241,7 @@
- + Return largest key and value.

Returns {Key, Value}, where @@ -253,7 +253,7 @@ - + Look up a key in a tree.

Looks up Key in Tree. @@ -263,7 +263,7 @@ - + Return largest key and value.

Maps function F(K, V1) -> V2 @@ -275,7 +275,7 @@ - + Traverse a tree with an iterator.

Returns {Key, Value, @@ -288,7 +288,7 @@ - + Return the number of nodes in a tree.

Returns the number of nodes in Tree.

@@ -296,7 +296,7 @@
- + Return smallest key and value.

Returns {Key, Value}, where @@ -308,7 +308,7 @@ - + Extract largest key and value.

Returns {Key, Value, @@ -321,7 +321,7 @@ - + Extract smallest key and value.

Returns {Key, Value, @@ -334,7 +334,7 @@ - + Convert a tree into a list.

Converts a tree into an ordered list of key-value tuples.

@@ -342,7 +342,7 @@
- + Update a key to new value in a tree.

Updates Key to value Value @@ -352,7 +352,7 @@ - + Return a list of the values in a tree.

Returns the values in Tree as an ordered list, diff --git a/lib/stdlib/doc/src/gen_event.xml b/lib/stdlib/doc/src/gen_event.xml index ff7da620c7..2915c4f507 100644 --- a/lib/stdlib/doc/src/gen_event.xml +++ b/lib/stdlib/doc/src/gen_event.xml @@ -28,7 +28,7 @@ - gen_event + gen_event Generic event handling behavior.

This behavior module provides event handling functionality. It @@ -130,7 +130,7 @@ gen_event:stop -----> Module:terminate/2 - add_handler(EventMgrRef, Handler, Args) -> Result + add_handler(EventMgrRef, Handler, Args) -> Result Add an event handler to a generic event manager. EventMgrRef = Name | {Name,Node} | {global,GlobalName} @@ -178,7 +178,7 @@ gen_event:stop -----> Module:terminate/2 - add_sup_handler(EventMgrRef, Handler, Args) -> Result + add_sup_handler(EventMgrRef, Handler, Args) -> Result Add a supervised event handler to a generic event manager. @@ -241,8 +241,8 @@ gen_event:stop -----> Module:terminate/2 - call(EventMgrRef, Handler, Request) -> Result - call(EventMgrRef, Handler, Request, Timeout) -> Result + call(EventMgrRef, Handler, Request) -> Result + call(EventMgrRef, Handler, Request, Timeout) -> Result Make a synchronous call to a generic event manager. EventMgrRef = Name | {Name,Node} | {global,GlobalName} @@ -285,7 +285,7 @@ gen_event:stop -----> Module:terminate/2 - delete_handler(EventMgrRef, Handler, Args) -> Result + delete_handler(EventMgrRef, Handler, Args) -> Result Delete an event handler from a generic event manager. EventMgrRef = Name | {Name,Node} | {global,GlobalName} @@ -318,8 +318,8 @@ gen_event:stop -----> Module:terminate/2 - notify(EventMgrRef, Event) -> ok - sync_notify(EventMgrRef, Event) -> ok + notify(EventMgrRef, Event) -> ok + sync_notify(EventMgrRef, Event) -> ok Notify an event manager about an event. EventMgrRef = Name | {Name,Node} | {global,GlobalName} @@ -349,8 +349,8 @@ gen_event:stop -----> Module:terminate/2 - start() -> Result - start(EventMgrName | Options) -> Result + start() -> Result + start(EventMgrName | Options) -> Result start(EventMgrName, Options) -> Result Create a stand-alone event manager process. @@ -375,8 +375,8 @@ gen_event:stop -----> Module:terminate/2 - start_link() -> Result - start_link(EventMgrName | Options) -> Result + start_link() -> Result + start_link(EventMgrName | Options) -> Result start_link(EventMgrName, Options) -> Result Create a generic event manager process in a supervision tree. @@ -436,7 +436,7 @@ gen_event:stop -----> Module:terminate/2 - stop(EventMgrRef) -> ok + stop(EventMgrRef) -> ok stop(EventMgrRef, Reason, Timeout) -> ok Terminate a generic event manager. @@ -474,7 +474,7 @@ gen_event:stop -----> Module:terminate/2 - swap_handler(EventMgrRef, {Handler1,Args1}, {Handler2,Args2}) -> Result + swap_handler(EventMgrRef, {Handler1,Args1}, {Handler2,Args2}) -> Result Replace an event handler in a generic event manager. EventMgrRef = Name | {Name,Node} | {global,GlobalName} @@ -521,7 +521,7 @@ gen_event:stop -----> Module:terminate/2 - swap_sup_handler(EventMgrRef, {Handler1,Args1}, {Handler2,Args2}) -> Result + swap_sup_handler(EventMgrRef, {Handler1,Args1}, {Handler2,Args2}) -> Result Replace an event handler in a generic event manager. EventMgrRef = Name | {Name,Node} | {global,GlobalName} @@ -546,7 +546,7 @@ gen_event:stop -----> Module:terminate/2 - which_handlers(EventMgrRef) -> [Handler] + which_handlers(EventMgrRef) -> [Handler] Return all event handlers installed in a generic event manager. @@ -575,7 +575,7 @@ gen_event:stop -----> Module:terminate/2 - Module:code_change(OldVsn, State, Extra) -> {ok, NewState} + Module:code_change(OldVsn, State, Extra) -> {ok, NewState} Update the internal state during upgrade/downgrade. OldVsn = Vsn | {down, Vsn} @@ -667,7 +667,7 @@ gen_event:stop -----> Module:terminate/2 - Module:handle_call(Request, State) -> Result + Module:handle_call(Request, State) -> Result Handle a synchronous request. Request = term() @@ -698,7 +698,7 @@ gen_event:stop -----> Module:terminate/2 - Module:handle_event(Event, State) -> Result + Module:handle_event(Event, State) -> Result Handle an event. Event = term() @@ -756,7 +756,7 @@ gen_event:stop -----> Module:terminate/2 - Module:handle_info(Info, State) -> Result + Module:handle_info(Info, State) -> Result Handle an incoming message. Info = term() @@ -788,7 +788,7 @@ gen_event:stop -----> Module:terminate/2 - Module:init(InitArgs) -> {ok,State} | {ok,State,hibernate} | {error,Reason} + Module:init(InitArgs) -> {ok,State} | {ok,State,hibernate} | {error,Reason} Initialize an event handler. InitArgs = Args | {Args,Term} @@ -825,7 +825,7 @@ gen_event:stop -----> Module:terminate/2 - Module:terminate(Arg, State) -> term() + Module:terminate(Arg, State) -> term() Clean up before deletion. Arg = Args | {stop,Reason} | stop | remove_handler diff --git a/lib/stdlib/doc/src/gen_server.xml b/lib/stdlib/doc/src/gen_server.xml index f3742fb8fb..a4554d7657 100644 --- a/lib/stdlib/doc/src/gen_server.xml +++ b/lib/stdlib/doc/src/gen_server.xml @@ -28,7 +28,7 @@ - gen_server + gen_server Generic server behavior.

This behavior module provides the server of a client-server @@ -101,8 +101,8 @@ gen_server:abcast -----> Module:handle_cast/2 - abcast(Name, Request) -> abcast - abcast(Nodes, Name, Request) -> abcast + abcast(Name, Request) -> abcast + abcast(Nodes, Name, Request) -> abcast Send an asynchronous request to many generic servers. Nodes = [Node] @@ -124,8 +124,8 @@ gen_server:abcast -----> Module:handle_cast/2 - call(ServerRef, Request) -> Reply - call(ServerRef, Request, Timeout) -> Reply + call(ServerRef, Request) -> Reply + call(ServerRef, Request, Timeout) -> Reply Make a synchronous call to a generic server. ServerRef = Name | {Name,Node} | {global,GlobalName} @@ -175,7 +175,7 @@ gen_server:abcast -----> Module:handle_cast/2 - cast(ServerRef, Request) -> ok + cast(ServerRef, Request) -> ok Send an asynchronous request to a generic server. ServerRef = Name | {Name,Node} | {global,GlobalName} @@ -200,10 +200,10 @@ gen_server:abcast -----> Module:handle_cast/2 - enter_loop(Module, Options, State) - enter_loop(Module, Options, State, ServerName) - enter_loop(Module, Options, State, Timeout) - enter_loop(Module, Options, State, ServerName, Timeout) + enter_loop(Module, Options, State) + enter_loop(Module, Options, State, ServerName) + enter_loop(Module, Options, State, Timeout) + enter_loop(Module, Options, State, ServerName, Timeout) Enter the gen_server receive loop. Module = atom() @@ -248,9 +248,9 @@ gen_server:abcast -----> Module:handle_cast/2 - multi_call(Name, Request) -> Result - multi_call(Nodes, Name, Request) -> Result - multi_call(Nodes, Name, Request, Timeout) -> Result + multi_call(Name, Request) -> Result + multi_call(Nodes, Name, Request) -> Result + multi_call(Nodes, Name, Request, Timeout) -> Result Make a synchronous call to many generic servers. Nodes = [Node] @@ -307,7 +307,7 @@ gen_server:abcast -----> Module:handle_cast/2 - reply(Client, Reply) -> Result + reply(Client, Reply) -> Result Send a reply to a client. Client - see below @@ -332,8 +332,8 @@ gen_server:abcast -----> Module:handle_cast/2 - start(Module, Args, Options) -> Result - start(ServerName, Module, Args, Options) -> Result + start(Module, Args, Options) -> Result + start(ServerName, Module, Args, Options) -> Result Create a standalone gen_server process. ServerName = {local,Name} | {global,GlobalName} @@ -361,8 +361,8 @@ gen_server:abcast -----> Module:handle_cast/2 - start_link(Module, Args, Options) -> Result - start_link(ServerName, Module, Args, Options) -> Result + start_link(Module, Args, Options) -> Result + start_link(ServerName, Module, Args, Options) -> Result Create a gen_server process in a supervision tree. @@ -508,7 +508,7 @@ gen_server:abcast -----> Module:handle_cast/2 - Module:code_change(OldVsn, State, Extra) -> {ok, NewState} | {error, Reason} + Module:code_change(OldVsn, State, Extra) -> {ok, NewState} | {error, Reason} Update the internal state during upgrade/downgrade. OldVsn = Vsn | {down, Vsn} @@ -610,7 +610,7 @@ gen_server:abcast -----> Module:handle_cast/2 - Module:handle_call(Request, From, State) -> Result + Module:handle_call(Request, From, State) -> Result Handle a synchronous request. Request = term() @@ -677,7 +677,7 @@ gen_server:abcast -----> Module:handle_cast/2 - Module:handle_cast(Request, State) -> Result + Module:handle_cast(Request, State) -> Result Handle an asynchronous request. Request = term() @@ -738,7 +738,7 @@ gen_server:abcast -----> Module:handle_cast/2 - Module:handle_info(Info, State) -> Result + Module:handle_info(Info, State) -> Result Handle an incoming message. Info = timeout | term() @@ -770,7 +770,7 @@ gen_server:abcast -----> Module:handle_cast/2 - Module:init(Args) -> Result + Module:init(Args) -> Result Initialize process and internal state. Args = term() @@ -811,7 +811,7 @@ gen_server:abcast -----> Module:handle_cast/2 - Module:terminate(Reason, State) + Module:terminate(Reason, State) Clean up before termination. Reason = normal | shutdown | {shutdown,term()} | term() diff --git a/lib/stdlib/doc/src/io.xml b/lib/stdlib/doc/src/io.xml index 943b3479ca..d69e808586 100644 --- a/lib/stdlib/doc/src/io.xml +++ b/lib/stdlib/doc/src/io.xml @@ -28,7 +28,7 @@ - io + io Standard I/O server interface functions.

This module provides an interface to standard Erlang I/O servers. @@ -104,8 +104,8 @@ - - + + Get the number of columns of an I/O device.

Retrieves the number of columns of the @@ -116,12 +116,12 @@ - - - - - - + + + + + + Write formatted output.

Writes the items in Data ([]) on the @@ -523,8 +523,8 @@ ok - - + + Read formatted input. @@ -690,8 +690,8 @@ enter>: alan : joe - - + + Read a specified number of characters. @@ -722,8 +722,8 @@ enter>: alan : joe - - + + Read a line. @@ -754,8 +754,8 @@ enter>: alan : joe - - + + Get the supported options and values from an I/O server. @@ -781,8 +781,8 @@ enter>: alan : joe - - + + Write a newline.

Writes new line to the standard output @@ -791,9 +791,9 @@ enter>: alan : joe - - - + + + Read, tokenize, and parse Erlang expressions. @@ -844,9 +844,9 @@ enter>abc("hey". - - - + + + Read, tokenize, and parse an Erlang form. @@ -918,8 +918,8 @@ enter>abc("hey". - - + + Write a list of characters.

Writes the characters of CharData to the I/O @@ -928,8 +928,8 @@ enter>abc("hey". - - + + Read a term. @@ -960,7 +960,7 @@ enter>abc("hey". - + Read a term. @@ -997,8 +997,8 @@ enter>abc("hey". - - + + Get the number of rows of an I/O device.

Retrieves the number of rows of IoDevice @@ -1009,9 +1009,9 @@ enter>abc("hey". - - - + + + Read and tokenize Erlang expressions. @@ -1060,9 +1060,9 @@ enter>1.0er. - - - + + + Read and tokenize an Erlang form. @@ -1083,8 +1083,8 @@ enter>1.0er. - - + + Set options.

Set options for the standard I/O device @@ -1198,8 +1198,8 @@ fun("") -> {yes, "quit", []}; - - + + Write a term.

Writes term Term to the standard output diff --git a/lib/stdlib/doc/src/io_lib.xml b/lib/stdlib/doc/src/io_lib.xml index 8a0b674126..cd4ca0a3a7 100644 --- a/lib/stdlib/doc/src/io_lib.xml +++ b/lib/stdlib/doc/src/io_lib.xml @@ -28,7 +28,7 @@ - io_lib + io_lib I/O library functions.

This module contains functions for converting to and from @@ -108,7 +108,7 @@ - + Test for a list of characters.

Returns true if Term is a flat list of @@ -117,7 +117,7 @@ - + Test for a deep list of characters.

Returns true if Term is a, possibly deep, @@ -136,8 +136,8 @@ - - + + Write formatted output.

Returns a character list that represents Data @@ -181,7 +181,7 @@ - + Read formatted input.

Tries to read String in accordance with the @@ -222,7 +222,7 @@ - + Re-entrant formatted reader

This is the re-entrant formatted reader. The continuation of @@ -268,7 +268,7 @@ - + Indentation after printing string.

Returns the indentation if String has been @@ -286,7 +286,7 @@ - + Write a newline.

Returns a character list that represents a new line character.

@@ -294,8 +294,8 @@
- - + + Pretty print a term.

Returns a list of characters that represents @@ -324,7 +324,7 @@ - + Test for a list of printable characters.

Returns true if Term is a flat list of @@ -383,9 +383,9 @@ - - - + + + Write a term.

Returns a character list that represents Term. @@ -411,7 +411,7 @@ - + Write an atom.

Returns the list of characters needed to print atom @@ -430,7 +430,7 @@ - + Write a character.

Returns the list of characters needed to print a character @@ -467,7 +467,7 @@ - + Write a string.

Returns the list of characters needed to print diff --git a/lib/stdlib/doc/src/lists.xml b/lib/stdlib/doc/src/lists.xml index f126326b09..66146e9258 100644 --- a/lib/stdlib/doc/src/lists.xml +++ b/lib/stdlib/doc/src/lists.xml @@ -28,7 +28,7 @@ 1996-09-28 A - lists + lists List processing functions.

This module contains functions for list processing.

@@ -63,7 +63,7 @@ - + Return true if all elements in a list satisfy Pred. @@ -74,7 +74,7 @@ - + Return true if any of the elements in a list satisfies Pred. @@ -85,7 +85,7 @@ - + Append a list of lists.

Returns a list in which all the sublists of @@ -98,7 +98,7 @@ - + Append two lists.

Returns a new list List3, which is made from @@ -113,7 +113,7 @@ - + Concatenate a list of atoms.

Concatenates the text representation of the elements of @@ -127,7 +127,7 @@ - + Delete an element from a list.

Returns a copy of List1 where the first element @@ -147,7 +147,7 @@ - + Drop elements from a list while a predicate is true. @@ -159,7 +159,7 @@ - + Make N copies of element.

Returns a list containing N copies of term @@ -172,7 +172,7 @@ - + Select elements that satisfy a predicate.

List2 is a list of all elements @@ -211,7 +211,7 @@ filtermap(Fun, List1) -> - + Length of flattened deep list.

Equivalent to length(flatten(DeepList)), but @@ -220,7 +220,7 @@ filtermap(Fun, List1) -> - + Map and flatten in one pass.

Takes a function from As to lists of @@ -241,7 +241,7 @@ flatmap(Fun, List1) -> - + Flatten a deep list.

Returns a flattened version of DeepList.

@@ -249,7 +249,7 @@ flatmap(Fun, List1) ->
- + Flatten a deep list.

Returns a flattened version of DeepList with tail @@ -258,7 +258,7 @@ flatmap(Fun, List1) -> - + Fold a function over a list.

Calls Fun(Elem, AccIn) @@ -278,7 +278,7 @@ flatmap(Fun, List1) -> - + Fold a function over a list.

Like foldl/3, but the @@ -312,7 +312,7 @@ flatmap(Fun, List1) -> - + Apply a function to each element of a list.

Calls Fun(Elem) for each element @@ -324,7 +324,7 @@ flatmap(Fun, List1) -> - + Delete an element from a list of tuples. 1..tuple_size(Tuple) @@ -336,7 +336,7 @@ flatmap(Fun, List1) -> - + Search for an element in a list of tuples. 1..tuple_size(Tuple) @@ -349,7 +349,7 @@ flatmap(Fun, List1) -> - + Map a function over a list of tuples. 1..tuple_size(Tuple) @@ -368,7 +368,7 @@ flatmap(Fun, List1) -> - + Test for membership of a list of tuples. 1..tuple_size(Tuple) @@ -379,7 +379,7 @@ flatmap(Fun, List1) -> - + Merge two key-sorted lists of tuples. 1..tuple_size(Tuple) @@ -395,7 +395,7 @@ flatmap(Fun, List1) -> - + Replace an element in a list of tuples. 1..tuple_size(Tuple) @@ -407,7 +407,7 @@ flatmap(Fun, List1) -> - + Search for an element in a list of tuples. 1..tuple_size(Tuple) @@ -425,7 +425,7 @@ flatmap(Fun, List1) -> - + Sort a list of tuples. 1..tuple_size(Tuple) @@ -436,7 +436,7 @@ flatmap(Fun, List1) -> - + Store an element in a list of tuples. 1..tuple_size(Tuple) @@ -452,7 +452,7 @@ flatmap(Fun, List1) -> - + Extract an element from a list of tuples. 1..tuple_size(Tuple) @@ -467,7 +467,7 @@ flatmap(Fun, List1) -> - + Return last element in a list.

Returns the last element in List.

@@ -475,7 +475,7 @@ flatmap(Fun, List1) ->
- + Map a function over a list.

Takes a function from As to @@ -488,7 +488,7 @@ flatmap(Fun, List1) -> - + Map and fold in one pass.

Combines the operations of @@ -504,7 +504,7 @@ flatmap(Fun, List1) -> - + Map and fold in one pass.

Combines the operations of @@ -514,7 +514,7 @@ flatmap(Fun, List1) -> - + Return maximum element of a list.

Returns the first element of List that compares @@ -524,7 +524,7 @@ flatmap(Fun, List1) -> - + Test for membership of a list.

Returns true if Elem matches some element @@ -533,7 +533,7 @@ flatmap(Fun, List1) -> - + Merge a list of sorted lists.

Returns the sorted list formed by merging all the sublists of @@ -546,7 +546,7 @@ flatmap(Fun, List1) -> - + Merge two sorted lists.

Returns the sorted list formed by merging List1 @@ -559,7 +559,7 @@ flatmap(Fun, List1) -> - + Merge two sorted list.

Returns the sorted list formed by merging List1 @@ -577,7 +577,7 @@ flatmap(Fun, List1) -> - + Merge three sorted lists.

Returns the sorted list formed by merging List1, @@ -593,7 +593,7 @@ flatmap(Fun, List1) -> - + Return minimum element of a list.

Returns the first element of List that compares @@ -603,7 +603,7 @@ flatmap(Fun, List1) -> - + Return the Nth element of a list. 1..length(List) @@ -617,7 +617,7 @@ c - + Return the Nth tail of a list. 0..length(List) @@ -638,7 +638,7 @@ c - + Partition a list into two lists based on a predicate.

Partitions List into two lists, where the first @@ -658,7 +658,7 @@ c - + Test for list prefix.

Returns true if List1 is a prefix of @@ -667,7 +667,7 @@ c - + Reverse a list.

Returns a list with the elements in List1 @@ -676,7 +676,7 @@ c - + Reverse a list appending a tail.

Returns a list with the elements in List1 @@ -689,8 +689,8 @@ c - - + + Generate a sequence of integers.

Returns a sequence of integers that starts with @@ -736,7 +736,7 @@ length(lists:seq(From, To, Incr)) =:= (To - From + Incr) div Incr - + Sort a list.

Returns a list containing the sorted elements of @@ -745,7 +745,7 @@ length(lists:seq(From, To, Incr)) =:= (To - From + Incr) div Incr - + Sort a list.

Returns a list containing the sorted elements of @@ -759,7 +759,7 @@ length(lists:seq(From, To, Incr)) =:= (To - From + Incr) div Incr - + Split a list into two lists. 0..length(List1) @@ -783,7 +783,7 @@ length(lists:seq(From, To, Incr)) =:= (To - From + Incr) div Incr - + Split a list into two lists based on a predicate.

Partitions List into two lists according to @@ -804,7 +804,7 @@ splitwith(Pred, List) -> - + Return a sublist of a certain length, starting at the first position. @@ -816,7 +816,7 @@ splitwith(Pred, List) -> - + Return a sublist starting at a specified position and with a specified number of elements. 1..(length(List1)+1) @@ -838,7 +838,7 @@ splitwith(Pred, List) -> - + Subtract the element in one list from another list.

Returns a new list List3 that is a copy of @@ -854,7 +854,7 @@ splitwith(Pred, List) -> - + Test for list suffix.

Returns true if List1 is a suffix of @@ -863,7 +863,7 @@ splitwith(Pred, List) -> - + Return the sum of elements in a list.

Returns the sum of the elements in List.

@@ -871,7 +871,7 @@ splitwith(Pred, List) ->
- + Take elements from a list while a predicate is true. @@ -884,7 +884,7 @@ splitwith(Pred, List) -> - + Merge two key-sorted lists of tuples, removing duplicates. 1..tuple_size(Tuple) @@ -902,7 +902,7 @@ splitwith(Pred, List) -> - + Sort a list of tuples, removing duplicates. 1..tuple_size(Tuple) @@ -914,7 +914,7 @@ splitwith(Pred, List) -> - + Merge a list of sorted lists, removing duplicates.

Returns the sorted list formed by merging all the sublists @@ -927,7 +927,7 @@ splitwith(Pred, List) -> - + Merge two sorted lists, removing duplicates.

Returns the sorted list formed by merging List1 @@ -941,7 +941,7 @@ splitwith(Pred, List) -> - + Merge two sorted lists, removing duplicates.

Returns the sorted list formed by merging List1 @@ -958,7 +958,7 @@ splitwith(Pred, List) -> - + Merge three sorted lists, removing duplicates.

Returns the sorted list formed by merging List1, @@ -973,7 +973,7 @@ splitwith(Pred, List) -> - + Unzip a list of two-tuples into two lists.

"Unzips" a list of two-tuples into two lists, where the first @@ -983,7 +983,7 @@ splitwith(Pred, List) -> - + Unzip a list of three-tuples into three lists.

"Unzips" a list of three-tuples into three lists, where @@ -994,7 +994,7 @@ splitwith(Pred, List) -> - + Sort a list, removing duplicates.

Returns a list containing the sorted elements of @@ -1004,7 +1004,7 @@ splitwith(Pred, List) -> - + Sort a list, removing duplicates.

Returns a list containing the sorted elements of @@ -1019,7 +1019,7 @@ splitwith(Pred, List) -> - + Zip two lists into a list of two-tuples.

"Zips" two lists of equal length into one list of two-tuples, @@ -1030,7 +1030,7 @@ splitwith(Pred, List) -> - + Zip three lists into a list of three-tuples.

"Zips" three lists of equal length into one list of @@ -1042,7 +1042,7 @@ splitwith(Pred, List) -> - + Zip two lists into one list according to a fun.

Combines the elements of two lists of equal length into one list. @@ -1059,7 +1059,7 @@ splitwith(Pred, List) -> - + Zip three lists into one list according to a fun.

Combines the elements of three lists of equal length into one diff --git a/lib/stdlib/doc/src/log_mf_h.xml b/lib/stdlib/doc/src/log_mf_h.xml index edc3d31025..b922006cc0 100644 --- a/lib/stdlib/doc/src/log_mf_h.xml +++ b/lib/stdlib/doc/src/log_mf_h.xml @@ -34,7 +34,7 @@ A log_mf_h.xml - log_mf_h + log_mf_h An event handler that logs events to disk.

This module is a gen_event handler module that can be installed @@ -60,8 +60,8 @@ - - + + Initiate the event handler.

Initiates the event handler. Returns Args, which diff --git a/lib/stdlib/doc/src/math.xml b/lib/stdlib/doc/src/math.xml index 0672da88b9..d89310e2c8 100644 --- a/lib/stdlib/doc/src/math.xml +++ b/lib/stdlib/doc/src/math.xml @@ -34,7 +34,7 @@ B math.xml - math + math Mathematical functions.

This module provides an interface to a number of mathematical @@ -50,28 +50,28 @@ - - - - - - - + + + + + + + - - - + + + - - + + - - - - - - + + + + + + Diverse math functions. @@ -82,7 +82,7 @@ - + Error function.

Returns the error function of X, where:

@@ -92,7 +92,7 @@ erf(X) = 2/sqrt(pi)*integral from 0 to X of exp(-t*t) dt.
- + Another error function.

erfc(X) returns 1.0 - erf(X), computed by @@ -101,7 +101,7 @@ erf(X) = 2/sqrt(pi)*integral from 0 to X of exp(-t*t) dt. - + A useful number.

A useful number.

diff --git a/lib/stdlib/doc/src/ms_transform.xml b/lib/stdlib/doc/src/ms_transform.xml index 0a05fa37c5..65cc150507 100644 --- a/lib/stdlib/doc/src/ms_transform.xml +++ b/lib/stdlib/doc/src/ms_transform.xml @@ -32,7 +32,7 @@ C ms_transform.xml - ms_transform + ms_transform A parse transformation that translates fun syntax into match specifications. @@ -731,7 +731,7 @@ ets:select(Table, [{{'$1',test,'$2'},[],['$_']}]). - + Error formatting function as required by the parse transformation interface.

Takes an error code returned by one of the other functions @@ -741,7 +741,7 @@ ets:select(Table, [{{'$1',test,'$2'},[],['$_']}]). - + Transforms Erlang abstract format containing calls to ets/dbg:fun2ms/1 into literal match specifications. Option list, required but not used. @@ -762,7 +762,7 @@ ets:select(Table, [{{'$1',test,'$2'},[],['$_']}]). - + Used when transforming funs created in the shell into match_specifications. List of variable bindings in the diff --git a/lib/stdlib/doc/src/orddict.xml b/lib/stdlib/doc/src/orddict.xml index e4dae4104d..27ccccee7e 100644 --- a/lib/stdlib/doc/src/orddict.xml +++ b/lib/stdlib/doc/src/orddict.xml @@ -32,7 +32,7 @@ B orddict.xml - orddict + orddict Key-value dictionary as ordered list.

This module provides a Key-Value dictionary. @@ -61,7 +61,7 @@ - + Append a value to keys in a dictionary.

Appends a new Value to the current list @@ -73,7 +73,7 @@ - + Append new values to keys in a dictionary.

Appends a list of values ValList to @@ -85,7 +85,7 @@ - + Erase a key from a dictionary.

Erases all items with a specified key from a dictionary.

@@ -93,7 +93,7 @@
- + Look up values in a dictionary.

Returns the value associated with Key @@ -105,7 +105,7 @@ - + Return all keys in a dictionary.

Returns a list of all keys in a dictionary.

@@ -122,7 +122,7 @@
- + Select elements that satisfy a predicate.

Orddict2 is a dictionary of all keys and values @@ -133,7 +133,7 @@ - + Search for a key in a dictionary.

Searches for a key in a dictionary. Returns @@ -145,7 +145,7 @@ - + Fold a function over a dictionary.

Calls Fun on successive keys and values of @@ -157,7 +157,7 @@ - + Convert a list of pairs to a dictionary.

Converts the Key-Value list @@ -175,7 +175,7 @@ - + Test if a key is in a dictionary.

Tests if Key is contained in @@ -184,7 +184,7 @@ - + Map a function over a dictionary.

Calls Fun on successive keys and values of @@ -193,7 +193,7 @@ - + Merge two dictionaries.

Merges two dictionaries, Orddict1 and @@ -212,7 +212,7 @@ merge(Fun, D1, D2) -> - + Create a dictionary.

Creates a new dictionary.

@@ -220,7 +220,7 @@ merge(Fun, D1, D2) ->
- + Return the number of elements in an ordered dictionary. @@ -229,7 +229,7 @@ merge(Fun, D1, D2) -> - + Store a value in a dictionary.

Stores a Key-Value pair in a @@ -240,7 +240,7 @@ merge(Fun, D1, D2) -> - + Convert a dictionary to a list of pairs.

Converts a dictionary to a list representation.

@@ -248,7 +248,7 @@ merge(Fun, D1, D2) ->
- + Update a value in a dictionary.

Updates a value in a dictionary by calling Fun @@ -258,7 +258,7 @@ merge(Fun, D1, D2) -> - + Update a value in a dictionary.

Updates a value in a dictionary by calling Fun @@ -273,7 +273,7 @@ append(Key, Val, D) -> - + Increment a value in a dictionary.

Adds Increment to the value associated with diff --git a/lib/stdlib/doc/src/ordsets.xml b/lib/stdlib/doc/src/ordsets.xml index d1e24facef..fbe334c009 100644 --- a/lib/stdlib/doc/src/ordsets.xml +++ b/lib/stdlib/doc/src/ordsets.xml @@ -32,7 +32,7 @@ A ordsets.xml - ordsets + ordsets Functions for manipulating sets as ordered lists. @@ -60,7 +60,7 @@ - + Add an element to an Ordset.

Returns a new ordered set formed from Ordset1 @@ -69,7 +69,7 @@ - + Remove an element from an Ordset.

Returns Ordset1, but with @@ -78,7 +78,7 @@ - + Filter set elements.

Filters elements in Ordset1 with boolean function @@ -87,7 +87,7 @@ - + Fold over set elements.

Folds Function over every element in @@ -97,7 +97,7 @@ - + Convert a list into an Ordset.

Returns an ordered set of the elements in List. @@ -106,7 +106,7 @@ - + Return the intersection of a list of Ordsets

Returns the intersection of the non-empty list of sets.

@@ -114,7 +114,7 @@
- + Return the intersection of two Ordsets.

Returns the intersection of Ordset1 and @@ -123,7 +123,7 @@ - + Check whether two Ordsets are disjoint.

Returns true if Ordset1 and @@ -133,7 +133,7 @@ - + Test for membership of an Ordset.

Returns true if Element is an element of @@ -151,7 +151,7 @@ - + Test for an Ordset.

Returns true if Ordset is an ordered set @@ -160,7 +160,7 @@ - + Test for subset.

Returns true when every element of Ordset1 @@ -170,7 +170,7 @@ - + Return an empty set.

Returns a new empty ordered set.

@@ -178,7 +178,7 @@
- + Return the number of elements in a set.

Returns the number of elements in Ordset.

@@ -186,7 +186,7 @@
- + Return the difference of two Ordsets.

Returns only the elements of Ordset1 that are not @@ -195,7 +195,7 @@ - + Convert an Ordset into a list.

Returns the elements of Ordset as a list.

@@ -203,7 +203,7 @@
- + Return the union of a list of Ordsets.

Returns the merged (union) set of the list of sets.

@@ -211,7 +211,7 @@
- + Return the union of two Ordsets.

Returns the merged (union) set of Ordset1 and diff --git a/lib/stdlib/doc/src/pool.xml b/lib/stdlib/doc/src/pool.xml index 05d12ade28..675ee08bfb 100644 --- a/lib/stdlib/doc/src/pool.xml +++ b/lib/stdlib/doc/src/pool.xml @@ -28,7 +28,7 @@ - pool + pool Load distribution facility.

This module can be used to run a set of Erlang nodes as a pool @@ -54,7 +54,7 @@ - + Ensure that a pool master is running.

Ensures that a pool master is running and includes @@ -63,7 +63,7 @@ - + Return the node with the expected lowest future load.

Returns the node with the expected lowest future load.

@@ -71,7 +71,7 @@
- + Return a list of the current member nodes of the pool. @@ -80,7 +80,7 @@ - + Spawn a process on the pool node with expected lowest future load. @@ -90,7 +90,7 @@ - + Spawn and link to a process on the pool node with expected lowest future load. @@ -100,8 +100,8 @@ - - + + >Start a new pool.

Starts a new pool. The file .hosts.erlang is read to @@ -122,7 +122,7 @@ - + Stop the pool and kill all the slave nodes.

Stops the pool and kills all the slave nodes.

diff --git a/lib/stdlib/doc/src/proc_lib.xml b/lib/stdlib/doc/src/proc_lib.xml index 8e7308ca74..aeb9f48735 100644 --- a/lib/stdlib/doc/src/proc_lib.xml +++ b/lib/stdlib/doc/src/proc_lib.xml @@ -28,7 +28,7 @@ - proc_lib + proc_lib Functions for asynchronous and synchronous start of processes adhering to the OTP design principles. @@ -102,7 +102,7 @@ - + Format a crash report.

Equivalent to @@ -162,7 +162,7 @@ - + Hibernate a process until a message is sent to it.

This function does the same as (and does call) the @@ -176,8 +176,8 @@ - - + + Used by a process when it has started.

This function must be used by a process that has been started by @@ -214,7 +214,7 @@ init(Parent) -> - + Extract the initial call of a proc_libspawned process. @@ -244,10 +244,10 @@ init(Parent) -> - - - - + + + + Spawn a new process. @@ -262,10 +262,10 @@ init(Parent) -> - - - - + + + + Spawn and link to a new process. @@ -281,10 +281,10 @@ init(Parent) -> - - - - + + + + Spawn a new process with specified options. @@ -306,12 +306,12 @@ init(Parent) -> - - - - - - + + + + + + Start a new process synchronously.

Starts a new process synchronously. Spawns the process and @@ -375,7 +375,7 @@ init(Parent) -> - + Extract and translate the initial call of a proc_libspawned process. diff --git a/lib/stdlib/doc/src/proplists.xml b/lib/stdlib/doc/src/proplists.xml index f9a54bf804..9d7eb55a7e 100644 --- a/lib/stdlib/doc/src/proplists.xml +++ b/lib/stdlib/doc/src/proplists.xml @@ -32,7 +32,7 @@ A proplists.xml - proplists + proplists Support functions for property lists.

Property lists are ordinary lists containing entries in the form @@ -61,7 +61,7 @@ - +

Similar to @@ -79,7 +79,7 @@ append_values(a, [{a, [1,2]}, {b, 0}, {a, 3}, {c, -1}, {a, [4]}]) - +

Minimizes the representation of all entries in the list. This is @@ -91,7 +91,7 @@ append_values(a, [{a, [1,2]}, {b, 0}, {a, 3}, {c, -1}, {a, [4]}]) - +

Deletes all entries associated with Key from @@ -100,7 +100,7 @@ append_values(a, [{a, [1,2]}, {b, 0}, {a, 3}, {c, -1}, {a, [4]}]) - +

Expands particular properties to corresponding sets of @@ -133,7 +133,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Similar to @@ -145,7 +145,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Returns the value of a boolean key/value option. If @@ -159,7 +159,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Returns an unordered list of the keys used in @@ -168,7 +168,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Equivalent to @@ -177,7 +177,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Returns the value of a simple key/value property in @@ -194,7 +194,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Returns true if List contains at least @@ -204,7 +204,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Returns the first entry associated with Key in @@ -219,7 +219,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Returns the list of all entries associated with @@ -231,7 +231,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Passes ListIn through a sequence of @@ -263,7 +263,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Creates a normal form (minimal) representation of a property. If @@ -276,7 +276,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Creates a normal form (minimal) representation of a simple key/value @@ -289,7 +289,7 @@ expand([{{foo, true}, [bar, baz]}], [{foo, false}, fie, foo, fum]) - +

Partitions List into a list of sublists and a @@ -310,7 +310,7 @@ split([{c, 2}, {e, 1}, a, {c, 3, 4}, d, {b, 5}, b], [a, b, c]) - +

Substitutes keys of properties. For each entry in @@ -332,7 +332,7 @@ split([{c, 2}, {e, 1}, a, {c, 3, 4}, d, {b, 5}, b], [a, b, c]) - +

Substitutes keys of boolean-valued properties and @@ -360,7 +360,7 @@ split([{c, 2}, {e, 1}, a, {c, 3, 4}, d, {b, 5}, b], [a, b, c]) - +

Unfolds all occurrences of atoms in ListIn to diff --git a/lib/stdlib/doc/src/qlc.xml b/lib/stdlib/doc/src/qlc.xml index fe14a6334c..fe60c2e9bb 100644 --- a/lib/stdlib/doc/src/qlc.xml +++ b/lib/stdlib/doc/src/qlc.xml @@ -32,7 +32,7 @@ PA1 qlc.xml - qlc + qlc Query interface to Mnesia, ETS, Dets, and so on. @@ -720,7 +720,7 @@ ets:match_spec_run(ets:lookup(86033, {2,2}), - + Return a query handle.

Returns a query handle. When evaluating query handle @@ -731,7 +731,7 @@ ets:match_spec_run(ets:lookup(86033, {2,2}), - + Return a query handle.

Returns a query handle. When evaluating query handle @@ -744,8 +744,8 @@ ets:match_spec_run(ets:lookup(86033, {2,2}), - - + + Create a query cursor.

Creates a query cursor and @@ -777,7 +777,7 @@ ok - + Delete a query cursor.

Deletes a query cursor. Only the owner of the cursor can @@ -786,10 +786,10 @@ ok - - - - + + + + Return all answers to a query.

Evaluates a query handle in the @@ -805,8 +805,8 @@ ok - - + + Fold a function over the answers to a query.

Calls Function on successive answers to @@ -830,7 +830,7 @@ ok - + Return an English description of a an error tuple.

Returns a descriptive string in English of an error tuple @@ -841,8 +841,8 @@ ok - - + + Return code describing a query handle.

Returns information about a @@ -946,8 +946,8 @@ end - - + + Return a query handle.

Returns a query handle. When evaluating query handle @@ -967,8 +967,8 @@ end - - + + Return some or all answers to a query.

Returns some or all of the remaining answers to a query @@ -983,8 +983,8 @@ end - - + + Return a handle for a query list comprehension.

Returns a query handle for a QLC. @@ -1188,8 +1188,8 @@ ets:match_spec_run( - - + + Return a query handle.

Returns a query handle. When evaluating query handle @@ -1208,9 +1208,9 @@ ets:match_spec_run( - - - + + + Return a handle for a query list comprehension.

A string version of q/1,2. @@ -1238,7 +1238,7 @@ ets:match_spec_run( - + Return a query handle for a table.

Returns a query handle for a QLC table. diff --git a/lib/stdlib/doc/src/queue.xml b/lib/stdlib/doc/src/queue.xml index 9f3aff03a3..83a8afea81 100644 --- a/lib/stdlib/doc/src/queue.xml +++ b/lib/stdlib/doc/src/queue.xml @@ -32,7 +32,7 @@ B queue.xml - queue + queue Abstract data type for FIFO queues.

This module provides (double-ended) FIFO queues @@ -113,7 +113,7 @@ - + Filter a queue.

Returns a queue Q2 that is the result of calling @@ -134,7 +134,7 @@ - + Convert a list to a queue.

Returns a queue containing the items in L in the @@ -144,7 +144,7 @@ - + Insert an item at the rear of a queue.

Inserts Item at the rear of queue @@ -154,7 +154,7 @@ - + Insert an item at the front of a queue.

Inserts Item at the front of queue @@ -164,7 +164,7 @@ - + Test if a queue is empty.

Tests if Q is empty and returns true if @@ -173,7 +173,7 @@ - + Test if a term is a queue.

Tests if Term is a queue and returns true @@ -182,7 +182,7 @@ - + Join two queues.

Returns a queue Q3 that is the result of joining @@ -192,7 +192,7 @@ - + Get the length of a queue.

Calculates and returns the length of queue Q.

@@ -200,7 +200,7 @@
- + Test if an item is in a queue.

Returns true if Item matches some element @@ -209,7 +209,7 @@ - + Create an empty queue.

Returns an empty queue.

@@ -217,7 +217,7 @@
- + Remove the front item from a queue.

Removes the item at the front of queue Q1. @@ -230,7 +230,7 @@ - + Remove the rear item from a queue.

Removes the item at the rear of queue Q1. @@ -242,7 +242,7 @@ - + Reverse a queue.

Returns a queue Q2 containing the items of @@ -251,7 +251,7 @@ - + Split a queue in two.

Splits Q1 in two. The N @@ -261,7 +261,7 @@ - + Convert a queue to a list.

Returns a list of the items in the queue in the same order; @@ -276,7 +276,7 @@ - + Remove the front item from a queue.

Returns a queue Q2 that is the result of removing @@ -286,7 +286,7 @@ - + Remove the rear item from a queue.

Returns a queue Q2 that is the result of removing @@ -296,7 +296,7 @@ - + Return the front item of a queue.

Returns Item at the front of queue @@ -306,7 +306,7 @@ - + Return the rear item of a queue.

Returns Item at the rear of queue @@ -316,7 +316,7 @@ - + Return the front item of a queue.

Returns tuple {value, Item}, where @@ -326,7 +326,7 @@ - + Return the rear item of a queue.

Returns tuple {value, Item}, where @@ -342,7 +342,7 @@ - + Insert an item at the head of a queue.

Inserts Item at the head of queue @@ -352,7 +352,7 @@ - + Return the tail item of a queue.

Returns the tail item of queue Q.

@@ -361,7 +361,7 @@
- + Return the item at the head of a queue.

Returns Item from the head of queue @@ -371,7 +371,7 @@ - + Remove the tail item from a queue.

Returns a queue Q2 that is the result of removing @@ -381,7 +381,7 @@ - + Remove the tail item from a queue.

Returns a queue Q2 that is the result of removing @@ -392,7 +392,7 @@ - + Return the tail item of a queue.

Returns the tail item of queue Q.

@@ -401,7 +401,7 @@
- + Remove the tail item from a queue.

Returns a queue Q2 that is the result of removing @@ -411,7 +411,7 @@ - + Insert an item at the tail of a queue.

Inserts Item as the tail item of queue @@ -421,7 +421,7 @@ - + Remove the head item from a queue.

Returns a queue Q2 that is the result of removing diff --git a/lib/stdlib/doc/src/random.xml b/lib/stdlib/doc/src/random.xml index 8d090d20b3..f0261ed009 100644 --- a/lib/stdlib/doc/src/random.xml +++ b/lib/stdlib/doc/src/random.xml @@ -32,7 +32,7 @@ A random.xml - random + random Pseudo-random number generation.

This module provides a random number generator. The method is attributed @@ -73,7 +73,7 @@ - + Seed random number generation with default values.

Seeds random number generation with default (fixed) values @@ -82,7 +82,7 @@ - + Seed random number generator.

seed({A1, A2, A3}) @@ -92,7 +92,7 @@ - + Seed random number generator.

Seeds random number generation with integer values in the process @@ -116,7 +116,7 @@ random:seed(erlang:phash2([node()]), - + Return default state for random number generation.

Returns the default state.

@@ -124,7 +124,7 @@ random:seed(erlang:phash2([node()]),
- + Return a random float.

Returns a random float uniformly distributed between 0.0 @@ -133,7 +133,7 @@ random:seed(erlang:phash2([node()]), - + Return a random integer.

Returns, for a specified integer N >= 1, @@ -144,7 +144,7 @@ random:seed(erlang:phash2([node()]), - + Return a random float.

Returns, for a specified state, a random float uniformly @@ -153,7 +153,7 @@ random:seed(erlang:phash2([node()]), - + Return a random integer.

Returns, for a specified integer N >= 1 and a diff --git a/lib/stdlib/doc/src/re.xml b/lib/stdlib/doc/src/re.xml index 71f49cb640..b04434492d 100644 --- a/lib/stdlib/doc/src/re.xml +++ b/lib/stdlib/doc/src/re.xml @@ -34,7 +34,7 @@ A re.xml - re + re Perl-like regular expressions for Erlang.

This module contains regular expression matching functions for @@ -87,7 +87,7 @@ - + Compile a regular expression into a match program

The same as compile(Regexp,[])

@@ -95,7 +95,7 @@
- + Compile a regular expression into a match program.

Compiles a regular expression, with the syntax @@ -348,7 +348,7 @@ - + Match a subject against regular expression and replace matching elements with Replacement. @@ -358,7 +358,7 @@ - + Match a subject against regular expression and replace matching elements with Replacement. @@ -408,7 +408,7 @@ re:replace("abcd","c","[\\&]",[{return,list}]). - + Match a subject against regular expression and capture subpatterns. @@ -417,7 +417,7 @@ re:replace("abcd","c","[\\&]",[{return,list}]). - + Match a subject against regular expression and capture subpatterns. See @@ -992,7 +992,7 @@ re:run("cacb","c(a|b)",[global,{capture,[1],list}]). - + Split a string by tokens specified as a regular expression. @@ -1001,7 +1001,7 @@ re:run("cacb","c(a|b)",[global,{capture,[1],list}]). - + Split a string by tokens specified as a regular expression See compile/2. diff --git a/lib/stdlib/doc/src/sets.xml b/lib/stdlib/doc/src/sets.xml index e076b9a5ec..07ce41b7a7 100644 --- a/lib/stdlib/doc/src/sets.xml +++ b/lib/stdlib/doc/src/sets.xml @@ -32,7 +32,7 @@ A sets.xml - sets + sets Functions for set manipulation.

Sets are collections of elements with no duplicate elements. @@ -59,7 +59,7 @@ - + Add an element to a Set.

Returns a new set formed from Set1 with @@ -68,7 +68,7 @@ - + Remove an element from a Set.

Returns Set1, but with @@ -77,7 +77,7 @@ - + Filter set elements.

Filters elements in Set1 with boolean function @@ -86,7 +86,7 @@ - + Fold over set elements.

Folds Function over every element in @@ -96,7 +96,7 @@ - + Convert a list into a Set.

Returns a set of the elements in List.

@@ -104,7 +104,7 @@
- + Return the intersection of a list of Sets.

Returns the intersection of the non-empty list of sets.

@@ -112,7 +112,7 @@
- + Return the intersection of two Sets.

Returns the intersection of Set1 and @@ -121,7 +121,7 @@ - + Check whether two Sets are disjoint.

Returns true if Set1 and @@ -131,7 +131,7 @@ - + Test for membership of a Set.

Returns true if Element is an element of @@ -149,7 +149,7 @@ - + Test for a Set.

Returns true if Set is a set of @@ -158,7 +158,7 @@ - + Test for subset.

Returns true when every element of Set1 is @@ -167,7 +167,7 @@ - + Return an empty set.

Returns a new empty set.

@@ -175,7 +175,7 @@
- + Return the number of elements in a set.

Returns the number of elements in Set.

@@ -183,7 +183,7 @@
- + Return the difference of two Sets.

Returns only the elements of Set1 that are not @@ -192,7 +192,7 @@ - + Convert a Setinto a list.

Returns the elements of Set as a list. @@ -201,7 +201,7 @@ - + Return the union of a list of Sets.

Returns the merged (union) set of the list of sets.

@@ -209,7 +209,7 @@
- + Return the union of two Sets.

Returns the merged (union) set of Set1 and diff --git a/lib/stdlib/doc/src/shell.xml b/lib/stdlib/doc/src/shell.xml index 892bb64daf..50a0968531 100644 --- a/lib/stdlib/doc/src/shell.xml +++ b/lib/stdlib/doc/src/shell.xml @@ -32,7 +32,7 @@ A shell.xml - shell + shell The Erlang shell.

This module provides an Erlang shell.

@@ -874,7 +874,7 @@ q - quit erlang - catch_exception(Bool) -> boolean() + catch_exception(Bool) -> boolean() Set the exception handling of the shell. Bool = boolean() @@ -892,7 +892,7 @@ q - quit erlang - + Set the number of previous commands to keep.

Sets the number of previous commands to keep in the @@ -911,7 +911,7 @@ q - quit erlang - + Set the number of previous results to keep.

Sets the number of results from previous commands to keep in @@ -921,7 +921,7 @@ q - quit erlang - + Exit a normal shell and starts a restricted shell.

Exits a normal shell and starts a restricted shell. @@ -936,7 +936,7 @@ q - quit erlang - + Exit a restricted shell and starts a normal shell.

Exits a restricted shell and starts a normal shell. The function diff --git a/lib/stdlib/doc/src/slave.xml b/lib/stdlib/doc/src/slave.xml index e53ec8231b..80fb28b548 100644 --- a/lib/stdlib/doc/src/slave.xml +++ b/lib/stdlib/doc/src/slave.xml @@ -28,7 +28,7 @@ - slave + slave Functions for starting and controlling slave nodes. @@ -68,7 +68,7 @@ - pseudo([Master | ServerList]) -> ok + pseudo([Master | ServerList]) -> ok Start a number of pseudo servers. Master = node() @@ -84,7 +84,7 @@ - + Start a number of pseudo servers.

Starts a number of pseudo servers. A pseudo server is a @@ -102,7 +102,7 @@ rpc:call(N, slave, pseudo, [node(), [pxw_server]]). - + Run a pseudo server.

Runs a pseudo server. This function never returns any value @@ -113,9 +113,9 @@ rpc:call(N, slave, pseudo, [node(), [pxw_server]]). - - - + + + Start a slave node on a host.

Starts a slave node on host Host. Host names @@ -178,9 +178,9 @@ slave:start(H, Name, Arg). - - - + + + Start and link to a slave node on a host.

Starts a slave node in the same way as start/1,2,3, @@ -193,7 +193,7 @@ slave:start(H, Name, Arg). - + Stop (kill) a node.

Stops (kills) a node.

diff --git a/lib/stdlib/doc/src/sofs.xml b/lib/stdlib/doc/src/sofs.xml index 4cf1984d46..a0759d2f52 100644 --- a/lib/stdlib/doc/src/sofs.xml +++ b/lib/stdlib/doc/src/sofs.xml @@ -32,7 +32,7 @@ PA1 sofs.xml - sofs + sofs Functions for manipulating sets of sets.

This module provides operations on finite sets and @@ -456,8 +456,8 @@ fun(S) -> sofs:partition(1, S) end - - + + Create a function.

Creates a function. @@ -470,7 +470,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the canonical map.

Returns the binary relation containing the elements @@ -490,7 +490,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the composite of two functions.

Returns the composite of @@ -506,7 +506,7 @@ fun(S) -> sofs:partition(1, S) end - + Create the function that maps each element of a set onto another set. @@ -522,7 +522,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the converse of a binary relation.

Returns the converse @@ -536,7 +536,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the difference of two sets.

Returns the difference of @@ -545,8 +545,8 @@ fun(S) -> sofs:partition(1, S) end - - + + Create a family from a directed graph.

Creates a family from @@ -565,7 +565,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the domain of a binary relation.

Returns the domain of @@ -579,7 +579,7 @@ fun(S) -> sofs:partition(1, S) end - + Return a restriction of a binary relation.

Returns the difference between the binary relation @@ -598,7 +598,7 @@ fun(S) -> sofs:partition(1, S) end - + Return a restriction of a relation.

Returns a subset of Set1 containing those @@ -618,7 +618,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the untyped empty set.

Returns the untyped empty @@ -628,7 +628,7 @@ fun(S) -> sofs:partition(1, S) end - + Extend the domain of a binary relation.

Returns the extension of @@ -648,8 +648,8 @@ fun(S) -> sofs:partition(1, S) end - - + + Create a family of subsets.

Creates a family of subsets. @@ -662,7 +662,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the difference of two families.

If Family1 and Family2 @@ -683,7 +683,7 @@ fun(S) -> sofs:partition(1, S) end - + Return a family of domains.

If Family1 is @@ -704,7 +704,7 @@ fun(S) -> sofs:partition(1, S) end - + Return a family of fields.

If Family1 is @@ -728,7 +728,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the intersection of a family of sets of sets. @@ -752,7 +752,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the intersection of two families.

If Family1 and Family2 @@ -772,7 +772,7 @@ fun(S) -> sofs:partition(1, S) end - + Return a family of modified subsets.

If Family1 is @@ -791,7 +791,7 @@ fun(S) -> sofs:partition(1, S) end - + Return a family of ranges.

If Family1 is @@ -812,7 +812,7 @@ fun(S) -> sofs:partition(1, S) end - + Select a subset of a family using a predicate.

If Family1 is @@ -837,8 +837,8 @@ fun(S) -> sofs:partition(1, S) end - - + + Create a directed graph from a family.

Creates a directed graph from @@ -863,7 +863,7 @@ fun(S) -> sofs:partition(1, S) end - + Create a binary relation from a family.

If Family is @@ -881,7 +881,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the union of a family of sets of sets.

If Family1 is @@ -904,7 +904,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the union of two families.

If Family1 and Family2 @@ -926,7 +926,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the field of a binary relation.

Returns the field of the @@ -942,7 +942,7 @@ fun(S) -> sofs:partition(1, S) end - + Create a set.

Creates a set from the external @@ -955,7 +955,7 @@ fun(S) -> sofs:partition(1, S) end - + Create a set out of a list of sets.

Returns the unordered @@ -971,7 +971,7 @@ fun(S) -> sofs:partition(1, S) end - + Create an ordered set out of a tuple of sets.

Returns the ordered @@ -981,8 +981,8 @@ fun(S) -> sofs:partition(1, S) end - - + + Create a set.

Creates an element @@ -1031,7 +1031,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the image of a set under a binary relation.

Returns the image of @@ -1047,7 +1047,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the intersection of a set of sets.

Returns @@ -1059,7 +1059,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the intersection of two sets.

Returns @@ -1069,7 +1069,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the intersection of a family.

Returns the intersection of @@ -1086,7 +1086,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the inverse of a function.

Returns the inverse @@ -1100,7 +1100,7 @@ fun(S) -> sofs:partition(1, S) end - + Return the inverse image of a set under a binary relation. @@ -1117,7 +1117,7 @@ fun(S) -> sofs:partition(1, S) end - + Test for a function.

Returns true if the binary relation BinRel @@ -1127,7 +1127,7 @@ fun(S) -> sofs:partition(1, S) end - + Test for disjoint sets.

Returns true if Set1 @@ -1138,7 +1138,7 @@ fun(S) -> sofs:partition(1, S) end - + Test for an empty set.

Returns true if AnySet is an empty @@ -1147,7 +1147,7 @@ fun(S) -> sofs:partition(1, S) end - + Test two sets for equality.

Returns true if AnySet1 @@ -1164,7 +1164,7 @@ true - + Test for an unordered set.

Returns true if AnySet is @@ -1175,7 +1175,7 @@ true - + Test for an unordered set.

Returns true if Term is @@ -1185,7 +1185,7 @@ true - + Test two sets for subset.

Returns true if Set1 is @@ -1195,7 +1195,7 @@ true - + Test for a type.

Returns true if term Term is @@ -1204,7 +1204,7 @@ true - + Return the join of two relations.

Returns the natural @@ -1221,7 +1221,7 @@ true - + Return the multiple relative product of a tuple of binary relations and a relation. @@ -1242,7 +1242,7 @@ true - + Return the number of elements of a set.

Returns the number of elements of the ordered or unordered @@ -1251,7 +1251,7 @@ true - + Return the coarsest partition given a set of sets.

Returns the partition of @@ -1268,7 +1268,7 @@ true - + Return a partition of a set.

Returns the partition of @@ -1284,7 +1284,7 @@ true - + Return a partition of a set.

Returns a pair of sets that, regarded as constituting a @@ -1307,7 +1307,7 @@ true - + Return a family indexing a partition.

Returns family @@ -1328,7 +1328,7 @@ true - + Return the Cartesian product of a tuple of sets.

Returns the Cartesian @@ -1347,7 +1347,7 @@ true - + Return the Cartesian product of two sets.

Returns the Cartesian @@ -1365,7 +1365,7 @@ true - + Return a set of substituted elements.

Returns the set created by substituting each element of @@ -1384,7 +1384,7 @@ true - + Return the range of a binary relation.

Returns the range of the @@ -1398,8 +1398,8 @@ true - - + + Create a relation.

Creates a relation. @@ -1417,7 +1417,7 @@ true - + Create a family from a binary relation.

Returns family @@ -1435,8 +1435,8 @@ true - - + + Return the relative product of a list of binary relations and a binary relation. @@ -1466,7 +1466,7 @@ true - + Return the relative product of two binary relations. @@ -1477,7 +1477,7 @@ true - + Return the relative_product of two binary relations. @@ -1498,7 +1498,7 @@ true - + Return a restriction of a binary relation.

Returns the restriction of @@ -1514,7 +1514,7 @@ true - + Return a restriction of a set.

Returns a subset of Set1 containing those @@ -1530,8 +1530,8 @@ true - - + + Create a set of atoms or any type of sets.

Creates an unordered @@ -1543,7 +1543,7 @@ true - + Select a subset using a predicate.

Returns the set containing every element @@ -1564,7 +1564,7 @@ true - + Return the strict relation corresponding to a given relation. @@ -1580,7 +1580,7 @@ true - + Return a function with a given set as domain.

Returns a function, the domain of which @@ -1629,7 +1629,7 @@ images2(SetOfSets, BinRel) -> - + Return the symmetric difference of two sets.

Returns the symmetric @@ -1645,7 +1645,7 @@ images2(SetOfSets, BinRel) -> - + Return a partition of two sets.

Returns a triple of sets:

@@ -1666,7 +1666,7 @@ images2(SetOfSets, BinRel) ->
- + Return the elements of a set.

Returns the external @@ -1675,7 +1675,7 @@ images2(SetOfSets, BinRel) -> - + Return a list or a tuple of the elements of a set.

Returns the elements of the ordered set ASet @@ -1686,7 +1686,7 @@ images2(SetOfSets, BinRel) -> - + Return the type of a set.

Returns the type of an @@ -1695,7 +1695,7 @@ images2(SetOfSets, BinRel) -> - + Return the union of a set of sets.

Returns the union of the @@ -1704,7 +1704,7 @@ images2(SetOfSets, BinRel) -> - + Return the union of two sets.

Returns the union of @@ -1713,7 +1713,7 @@ images2(SetOfSets, BinRel) -> - + Return the union of a family.

Returns the union of family @@ -1727,7 +1727,7 @@ images2(SetOfSets, BinRel) -> - + Return the weak relation corresponding to a given relation. diff --git a/lib/stdlib/doc/src/string.xml b/lib/stdlib/doc/src/string.xml index d3b0175d69..d102191a57 100644 --- a/lib/stdlib/doc/src/string.xml +++ b/lib/stdlib/doc/src/string.xml @@ -32,7 +32,7 @@ A string.xml - string + string String processing functions.

This module provides functions for string processing.

@@ -164,7 +164,7 @@
- + Test string equality. @@ -522,7 +522,7 @@ ÖÄÅ - + Return a float whose text representation is the integers (ASCII values) of a string. @@ -544,7 +544,7 @@ ÖÄÅ - + Return an integer whose text representation is the integers (ASCII values) of a string. @@ -649,8 +649,8 @@ ÖÄÅ - - + + Center a string.

Returns a string, where String is centered in the @@ -664,8 +664,8 @@ ÖÄÅ - - + + Return a string consisting of numbers of characters.

Returns a string consisting of Number characters @@ -678,7 +678,7 @@ ÖÄÅ - + Return the index of the first occurrence of a character in a string. @@ -692,7 +692,7 @@ ÖÄÅ - + Concatenate two strings.

Concatenates String1 and @@ -712,7 +712,7 @@ ÖÄÅ - + Copy a string.

Returns a string containing String repeated @@ -724,7 +724,7 @@ ÖÄÅ - + Span characters at start of a string.

Returns the length of the maximum initial segment of @@ -741,7 +741,7 @@ ÖÄÅ - + Join a list of strings with separator.

Returns a string with the elements of StringList @@ -757,8 +757,8 @@ ÖÄÅ - - + + Adjust left end of a string.

Returns String with the length adjusted in @@ -778,7 +778,7 @@ ÖÄÅ - + Return the length of a string.

Returns the number of characters in String.

@@ -789,7 +789,7 @@ ÖÄÅ
- + Return the index of the last occurrence of a character in a string. @@ -803,8 +803,8 @@ ÖÄÅ - - + + Adjust right end of a string.

Returns String with the length adjusted in @@ -823,7 +823,7 @@ ÖÄÅ - + Find the index of a substring.

Returns the position where the last occurrence of @@ -841,7 +841,7 @@ ÖÄÅ - + Span characters at start of a string.

Returns the length of the maximum initial segment of @@ -858,7 +858,7 @@ ÖÄÅ - + Find the index of a substring.

Returns the position where the first occurrence of @@ -876,9 +876,9 @@ ÖÄÅ - - - + + + Strip leading or trailing characters.

Returns a string, where leading or trailing, or both, blanks or a @@ -898,8 +898,8 @@ ÖÄÅ - - + + Extract a substring.

Returns a substring of String, starting at @@ -916,8 +916,8 @@ sub_string("Hello World", 4, 8). - - + + Return a substring of a string.

Returns a substring of String, starting at @@ -934,8 +934,8 @@ sub_string("Hello World", 4, 8). - - + + Extract subword.

Returns the word in position Number of @@ -952,10 +952,10 @@ sub_string("Hello World", 4, 8). - - - - + + + + Convert case of string (ISO/IEC 8859-1). @@ -974,7 +974,7 @@ sub_string("Hello World", 4, 8). - + Split string into tokens.

Returns a list of tokens in String, separated @@ -994,8 +994,8 @@ sub_string("Hello World", 4, 8). - - + + Count blank separated words.

Returns the number of words in String, separated diff --git a/lib/stdlib/doc/src/supervisor.xml b/lib/stdlib/doc/src/supervisor.xml index eb6168c002..f15b1a2dd3 100644 --- a/lib/stdlib/doc/src/supervisor.xml +++ b/lib/stdlib/doc/src/supervisor.xml @@ -28,7 +28,7 @@ - supervisor + supervisor Generic supervisor behavior.

This behavior module provides a supervisor, a process that @@ -318,7 +318,7 @@ child_spec() = #{id => child_id(), % mandatory - + Check if children specifications are syntactically correct. @@ -366,7 +366,7 @@ child_spec() = #{id => child_id(), % mandatory - + Delete a child specification from a supervisor.

Tells supervisor SupRef to delete the child @@ -400,7 +400,7 @@ child_spec() = #{id => child_id(), % mandatory - + Restart a terminated child process belonging to a supervisor. @@ -436,7 +436,7 @@ child_spec() = #{id => child_id(), % mandatory - + Dynamically add a child process to a supervisor. @@ -503,8 +503,8 @@ child_spec() = #{id => child_id(), % mandatory - - + + Create a supervisor process. @@ -584,7 +584,7 @@ child_spec() = #{id => child_id(), % mandatory - + Terminate a child process belonging to a supervisor.

Tells supervisor SupRef to terminate the @@ -621,7 +621,7 @@ child_spec() = #{id => child_id(), % mandatory - + Return information about all children specifications and child processes belonging to a supervisor. @@ -666,7 +666,7 @@ child_spec() = #{id => child_id(), % mandatory - Module:init(Args) -> Result + Module:init(Args) -> Result Return a supervisor specification. Args = term() diff --git a/lib/stdlib/doc/src/supervisor_bridge.xml b/lib/stdlib/doc/src/supervisor_bridge.xml index c4c1b37548..ee5d97fea1 100644 --- a/lib/stdlib/doc/src/supervisor_bridge.xml +++ b/lib/stdlib/doc/src/supervisor_bridge.xml @@ -30,7 +30,7 @@ - supervisor_bridge + supervisor_bridge Generic supervisor bridge behavior.

This behavior module provides a supervisor bridge, a process @@ -57,8 +57,8 @@ - - + + Create a supervisor bridge process.

Creates a supervisor bridge process, linked to the calling process, @@ -133,7 +133,7 @@ - Module:init(Args) -> Result + Module:init(Args) -> Result Initialize process and start subsystem. Args = term() @@ -164,7 +164,7 @@ - Module:terminate(Reason, State) + Module:terminate(Reason, State) Clean up and stop subsystem. Reason = shutdown | term() diff --git a/lib/stdlib/doc/src/sys.xml b/lib/stdlib/doc/src/sys.xml index 040f6587ec..6fc508b853 100644 --- a/lib/stdlib/doc/src/sys.xml +++ b/lib/stdlib/doc/src/sys.xml @@ -32,7 +32,7 @@ sys.xml - sys + sys A functional interface to system messages.

This module contains functions for sending system messages used by @@ -129,8 +129,8 @@ - - + + Send the code change system message to the process.

Tells the process to change code. The process must be @@ -227,8 +227,8 @@ - - + + Get the status of the process.

Gets the status of the process.

@@ -265,8 +265,8 @@
- - + + Install a debug function in the process.

Enables installation of alternative debug functions. An example of @@ -283,8 +283,8 @@ - - + + Log system events in memory.

Turns the logging of system events on or off. If on, a @@ -302,8 +302,8 @@ - - + + Log system events to the specified file.

Enables or disables the logging of all system events in text @@ -315,8 +315,8 @@ - - + + Turn off debugging.

Turns off all debugging for the process. This includes @@ -327,8 +327,8 @@ - - + + Remove a debug function from the process.

Removes an installed debug function from the @@ -451,8 +451,8 @@ - - + + Resume a suspended process.

Resumes a suspended process.

@@ -460,8 +460,8 @@
- - + + Enable or disable the collections of statistics.

Enables or disables the collection of statistics. If @@ -471,8 +471,8 @@ - - + + Suspend the process.

Suspends the process. When the process is suspended, it @@ -494,8 +494,8 @@ - - + + Print all system events on standard_io.

Prints all system events on standard_io. The events are @@ -518,7 +518,7 @@ - + Convert a list of options to a debug structure.

Can be used by a process that initiates a debug @@ -529,7 +529,7 @@ - + Get the data associated with a debug option.

Gets the data associated with a debug option. @@ -541,7 +541,7 @@ - + Generate a system event.

This function is called by a process when it generates a @@ -556,7 +556,7 @@ - + Take care of system messages.

This function is used by a process module to take care of system @@ -594,7 +594,7 @@ - + Print the logged events in the debug structure.

Prints the logged system events in the debug structure, @@ -605,7 +605,7 @@ - Module:system_code_change(Misc, Module, OldVsn, Extra) -> + Module:system_code_change(Misc, Module, OldVsn, Extra) -> {ok, NMisc} Called when the process is to perform a code change. @@ -628,7 +628,7 @@ - Module:system_continue(Parent, Debug, Misc) -> none() + Module:system_continue(Parent, Debug, Misc) -> none() Called when the process is to continue its execution. Parent = pid() @@ -681,7 +681,7 @@ - Module:system_terminate(Reason, Parent, Debug, Misc) -> none() + Module:system_terminate(Reason, Parent, Debug, Misc) -> none() Called when the process is to terminate. Reason = term() diff --git a/lib/stdlib/doc/src/timer.xml b/lib/stdlib/doc/src/timer.xml index 885bb89b1a..165eecfbb0 100644 --- a/lib/stdlib/doc/src/timer.xml +++ b/lib/stdlib/doc/src/timer.xml @@ -32,7 +32,7 @@ D timer.xml - timer + timer Timer functions.

This module provides useful functions related to time. Unless otherwise @@ -62,7 +62,7 @@ - + Apply Module:Function(Arguments) after a specified Time. @@ -75,7 +75,7 @@ - + Evaluate Module:Function(Arguments) repeatedly at intervals of Time. @@ -88,7 +88,7 @@ - + Cancel a previously requested time-out identified by TRef. @@ -101,8 +101,8 @@ - - + + Send an exit signal with Reason after a specified Time. @@ -117,7 +117,7 @@ - + Convert Hours+Minutes+Seconds to Milliseconds. @@ -127,7 +127,7 @@ - + Convert Hours to Milliseconds.

Returns the number of milliseconds in Hours.

@@ -135,8 +135,8 @@
- - + + Send an exit signal with Reason after a specified Time. @@ -148,7 +148,7 @@ - + Converts Minutes to Milliseconds.

Returns the number of milliseconds in @@ -157,7 +157,7 @@ - + Calculate time difference between time stamps. In microseconds @@ -173,7 +173,7 @@ - + Convert Seconds to Milliseconds.

Returns the number of milliseconds in @@ -182,8 +182,8 @@ - - + + Send Message to Pid after a specified Time. @@ -206,8 +206,8 @@ - - + + Send Message repeatedly at intervals of Time. @@ -231,7 +231,7 @@ - + Suspend the calling process for Time milliseconds. @@ -244,7 +244,7 @@ - + Start a global timer server (named timer_server). @@ -260,7 +260,7 @@ - + Measure the real time it takes to evaluate apply(Module, Function, Arguments) or apply(Fun, Arguments). In microseconds diff --git a/lib/stdlib/doc/src/unicode.xml b/lib/stdlib/doc/src/unicode.xml index 2451006564..b7696a4b7e 100644 --- a/lib/stdlib/doc/src/unicode.xml +++ b/lib/stdlib/doc/src/unicode.xml @@ -30,7 +30,7 @@ - unicode + unicode Functions for converting Unicode characters.

This module contains functions for converting between different character @@ -139,7 +139,7 @@ - + Identify UTF byte order marks in a binary. @@ -156,7 +156,7 @@ - + Convert a collection of characters to a UTF-8 binary.

Same as characters_to_binary(Data, unicode, @@ -165,7 +165,7 @@ - + Convert a collection of characters to a UTF-8 binary.

Same as characters_to_binary(Data, @@ -174,7 +174,7 @@ - + Convert a collection of characters to a UTF-8 binary.

Behaves as @@ -211,7 +211,7 @@ - + Convert a collection of characters to a list of Unicode characters. @@ -220,7 +220,7 @@ - + Convert a collection of characters to a list of Unicode characters. @@ -515,7 +515,7 @@ decode_data(Data) -> - + Create a binary UTF byte order mark from encoding. A binary() such that byte_size(Bin) >= 4. diff --git a/lib/stdlib/doc/src/win32reg.xml b/lib/stdlib/doc/src/win32reg.xml index f4a4fa1626..5e2aed6062 100644 --- a/lib/stdlib/doc/src/win32reg.xml +++ b/lib/stdlib/doc/src/win32reg.xml @@ -32,7 +32,7 @@ PA1 win32reg.xml - win32reg + win32reg Provides access to the registry on Windows.

This module provides read and write access to the @@ -112,7 +112,7 @@ hkdd HKEY_DYN_DATA - + Move to a key in the registry.

Changes the current key to another key. Works like cd. @@ -122,7 +122,7 @@ hkdd HKEY_DYN_DATA - + Move to a key, create it if it is not there.

Creates a key, or just changes to it, if it is already there. Works @@ -133,7 +133,7 @@ hkdd HKEY_DYN_DATA - + Close the registry.

Closes the registry. After that, the RegHandle @@ -142,7 +142,7 @@ hkdd HKEY_DYN_DATA - + Return the path to the current key.

Returns the path to the current key. This is the equivalent of @@ -153,7 +153,7 @@ hkdd HKEY_DYN_DATA - + Delete the current key.

Deletes the current key, if it is valid. Calls the Win32 API @@ -166,7 +166,7 @@ hkdd HKEY_DYN_DATA - + Delete the named value on the current key.

Deletes a named value on the current key. The atom default is @@ -176,7 +176,7 @@ hkdd HKEY_DYN_DATA - + Expand a string with environment variables.

Expands a string containing environment variables between percent @@ -189,7 +189,7 @@ hkdd HKEY_DYN_DATA - + Convert a POSIX error code to a string.

Converts a POSIX error code to a string @@ -198,7 +198,7 @@ hkdd HKEY_DYN_DATA - + Open the registry for reading or writing.

Opens the registry for reading or writing. The current key is the @@ -211,7 +211,7 @@ hkdd HKEY_DYN_DATA - + Set value at the current registry key with specified name. @@ -230,7 +230,7 @@ hkdd HKEY_DYN_DATA - + Get subkeys to the current key.

Returns a list of subkeys to the current key. Calls the Win32 @@ -240,7 +240,7 @@ hkdd HKEY_DYN_DATA - + Get the named value on the current key.

Retrieves the named value (or default) on the current key. @@ -251,7 +251,7 @@ hkdd HKEY_DYN_DATA - + Get all values on the current key.

Retrieves a list of all values on the current key. The values diff --git a/lib/stdlib/doc/src/zip.xml b/lib/stdlib/doc/src/zip.xml index aaa25952c2..bb2ed7727a 100644 --- a/lib/stdlib/doc/src/zip.xml +++ b/lib/stdlib/doc/src/zip.xml @@ -32,7 +32,7 @@ PA1 zip.xml - zip + zip Utility for reading and creating 'zip' archives. @@ -234,10 +234,10 @@ - - - - + + + + Retrieve the name of all files in a zip archive.

list_dir/1 retrieves all filenames in the zip archive @@ -263,7 +263,7 @@ - + Print the name of each file in a zip archive.

Prints all filenames in the zip archive Archive @@ -272,7 +272,7 @@ - + Print name and information for each file in a zip archive. @@ -283,10 +283,10 @@ - - - - + + + + Extract files from a zip archive.

unzip/1 extracts all files from a zip archive.

@@ -353,10 +353,10 @@
- - - - + + + + Create a zip archive with options.

Creates a zip archive containing the files specified in @@ -481,7 +481,7 @@ - + Close an open archive.

Closes a zip archive, previously opened with @@ -492,8 +492,8 @@ - - + + Extract files from an open archive.

Extracts one or all files from an open archive.

@@ -505,7 +505,7 @@
- + Return a table of files in open zip archive.

Returns the file list of an open zip archive. The first returned @@ -514,8 +514,8 @@ - - + + Open an archive and return a handle to it.

Opens a zip archive, and reads and saves its directory. This -- cgit v1.2.3