Cleared up references to implementation specific types.

[SVN r22190]
This commit is contained in:
John Maddock
2004-02-07 13:11:54 +00:00
parent 9ebe515adf
commit f1312f16c4
4 changed files with 30 additions and 32 deletions

View File

@ -26,14 +26,14 @@
<br> <br>
<hr> <hr>
<h3>Synopsis</h3> <h3>Synopsis</h3>
<p>The type <code>match_flag_type</code> is an implementation defined bitmask type <p>The type <code>match_flag_type</code> is an implementation specific bitmask
(17.3.2.1.2) that controls how a regular expression is matched against a type (17.3.2.1.2) that controls how a regular expression is matched against a
character sequence.&nbsp; The behavior of the format flags is descibed in more character sequence.&nbsp; The behavior of the format flags is descibed in more
detail in the <A href="format_syntax.html">format syntax guide</A>.</p> detail in the <A href="format_syntax.html">format syntax guide</A>.</p>
<pre> <pre>
namespace boost{ namespace regex_constants{ namespace boost{ namespace regex_constants{
typedef bitmask_type match_flag_type; typedef <EM>implemenation-specific-bitmask-type</EM> match_flag_type;
static const match_flag_type match_default = 0; static const match_flag_type match_default = 0;
static const match_flag_type match_not_bob; static const match_flag_type match_not_bob;
@ -62,8 +62,8 @@ static const match_flag_type format_all;
} // namespace boost } // namespace boost
</pre> </pre>
<h3>Description</h3> <h3>Description</h3>
<p>The type <code>match_flag_type</code> is an implementation defined bitmask type <p>The type <code>match_flag_type</code> is an implementation specific bitmask
(17.3.2.1.2). When matching a regular expression against a sequence of type (17.3.2.1.2). When matching a regular expression against a sequence of
characters [first, last) then setting its elements has the effects listed in characters [first, last) then setting its elements has the effects listed in
the table below:</p> the table below:</p>
<p></p> <p></p>

View File

@ -24,13 +24,15 @@
</P> </P>
<HR> <HR>
<H3>Synopsis</H3> <H3>Synopsis</H3>
<P>Type syntax_option type is an implementation defined bitmask type that controls <P>Type syntax_option type is an implementation specific bitmask type that
how a regular expression string is to be interpreted.&nbsp; For convenience controls how a regular expression string is to be interpreted.&nbsp; For
note that all the constants listed here, are also duplicated within the scope convenience note that all the constants listed here, are also duplicated within
of class template <A href="basic_regex.html">basic_regex</A>.</P> the scope of class template <A href="basic_regex.html">basic_regex</A>.</P>
<PRE>namespace std{ namespace regex_constants{ <PRE>namespace std{ namespace regex_constants{
typedef bitmask_type syntax_option_type; typedef <EM>implementation-specific-bitmask-type</EM>
syntax_option_type;
// these flags are standardized: // these flags are standardized:
static const syntax_option_type normal; static const syntax_option_type normal;
static const syntax_option_type icase; static const syntax_option_type icase;
@ -50,7 +52,7 @@ static const syntax_option_type perl;<BR>// these are boost.regex specific:<BR>s
} // namespace regex_constants } // namespace regex_constants
} // namespace std</PRE> } // namespace std</PRE>
<H3>Description</H3> <H3>Description</H3>
<P>The type <CODE>syntax_option_type</CODE> is an implementation defined bitmask <P>The type <CODE>syntax_option_type</CODE> is an implementation specific bitmask
type (17.3.2.1.2). Setting its elements has the effects listed in the table type (17.3.2.1.2). Setting its elements has the effects listed in the table
below, a valid value of type <CODE>syntax_option_type</CODE> will always have below, a valid value of type <CODE>syntax_option_type</CODE> will always have
exactly one of the elements <CODE>normal, basic, extended, awk, grep, egrep, sed exactly one of the elements <CODE>normal, basic, extended, awk, grep, egrep, sed
@ -320,12 +322,9 @@ static const syntax_option_type perl;<BR>// these are boost.regex specific:<BR>s
24 Oct 2003 24 Oct 2003
<!--webbot bot="Timestamp" endspan i-checksum="39359" --></p> <!--webbot bot="Timestamp" endspan i-checksum="39359" --></p>
<p><i><EFBFBD> Copyright John Maddock&nbsp;1998- <p><i><EFBFBD> Copyright John Maddock&nbsp;1998-
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%Y" startspan --> <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%Y" startspan --> 2003<!--webbot bot="Timestamp" endspan i-checksum="39359" --></i></p>
2003<!--webbot bot="Timestamp" endspan i-checksum="39359" --></i></p>
<P><I>Use, modification and distribution are subject to the Boost Software License, <P><I>Use, modification and distribution are subject to the Boost Software License,
Version 1.0. (See accompanying file <A href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</A> Version 1.0. (See accompanying file <A href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</A>
or copy at <A href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</A>)</I></P> or copy at <A href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</A>)</I></P>
</body> </body>
</html> </html>

View File

@ -26,14 +26,14 @@
<br> <br>
<hr> <hr>
<h3>Synopsis</h3> <h3>Synopsis</h3>
<p>The type <code>match_flag_type</code> is an implementation defined bitmask type <p>The type <code>match_flag_type</code> is an implementation specific bitmask
(17.3.2.1.2) that controls how a regular expression is matched against a type (17.3.2.1.2) that controls how a regular expression is matched against a
character sequence.&nbsp; The behavior of the format flags is descibed in more character sequence.&nbsp; The behavior of the format flags is descibed in more
detail in the <A href="format_syntax.html">format syntax guide</A>.</p> detail in the <A href="format_syntax.html">format syntax guide</A>.</p>
<pre> <pre>
namespace boost{ namespace regex_constants{ namespace boost{ namespace regex_constants{
typedef bitmask_type match_flag_type; typedef <EM>implemenation-specific-bitmask-type</EM> match_flag_type;
static const match_flag_type match_default = 0; static const match_flag_type match_default = 0;
static const match_flag_type match_not_bob; static const match_flag_type match_not_bob;
@ -62,8 +62,8 @@ static const match_flag_type format_all;
} // namespace boost } // namespace boost
</pre> </pre>
<h3>Description</h3> <h3>Description</h3>
<p>The type <code>match_flag_type</code> is an implementation defined bitmask type <p>The type <code>match_flag_type</code> is an implementation specific bitmask
(17.3.2.1.2). When matching a regular expression against a sequence of type (17.3.2.1.2). When matching a regular expression against a sequence of
characters [first, last) then setting its elements has the effects listed in characters [first, last) then setting its elements has the effects listed in
the table below:</p> the table below:</p>
<p></p> <p></p>

View File

@ -24,13 +24,15 @@
</P> </P>
<HR> <HR>
<H3>Synopsis</H3> <H3>Synopsis</H3>
<P>Type syntax_option type is an implementation defined bitmask type that controls <P>Type syntax_option type is an implementation specific bitmask type that
how a regular expression string is to be interpreted.&nbsp; For convenience controls how a regular expression string is to be interpreted.&nbsp; For
note that all the constants listed here, are also duplicated within the scope convenience note that all the constants listed here, are also duplicated within
of class template <A href="basic_regex.html">basic_regex</A>.</P> the scope of class template <A href="basic_regex.html">basic_regex</A>.</P>
<PRE>namespace std{ namespace regex_constants{ <PRE>namespace std{ namespace regex_constants{
typedef bitmask_type syntax_option_type; typedef <EM>implementation-specific-bitmask-type</EM>
syntax_option_type;
// these flags are standardized: // these flags are standardized:
static const syntax_option_type normal; static const syntax_option_type normal;
static const syntax_option_type icase; static const syntax_option_type icase;
@ -50,7 +52,7 @@ static const syntax_option_type perl;<BR>// these are boost.regex specific:<BR>s
} // namespace regex_constants } // namespace regex_constants
} // namespace std</PRE> } // namespace std</PRE>
<H3>Description</H3> <H3>Description</H3>
<P>The type <CODE>syntax_option_type</CODE> is an implementation defined bitmask <P>The type <CODE>syntax_option_type</CODE> is an implementation specific bitmask
type (17.3.2.1.2). Setting its elements has the effects listed in the table type (17.3.2.1.2). Setting its elements has the effects listed in the table
below, a valid value of type <CODE>syntax_option_type</CODE> will always have below, a valid value of type <CODE>syntax_option_type</CODE> will always have
exactly one of the elements <CODE>normal, basic, extended, awk, grep, egrep, sed exactly one of the elements <CODE>normal, basic, extended, awk, grep, egrep, sed
@ -320,12 +322,9 @@ static const syntax_option_type perl;<BR>// these are boost.regex specific:<BR>s
24 Oct 2003 24 Oct 2003
<!--webbot bot="Timestamp" endspan i-checksum="39359" --></p> <!--webbot bot="Timestamp" endspan i-checksum="39359" --></p>
<p><i><EFBFBD> Copyright John Maddock&nbsp;1998- <p><i><EFBFBD> Copyright John Maddock&nbsp;1998-
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%Y" startspan --> <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%Y" startspan --> 2003<!--webbot bot="Timestamp" endspan i-checksum="39359" --></i></p>
2003<!--webbot bot="Timestamp" endspan i-checksum="39359" --></i></p>
<P><I>Use, modification and distribution are subject to the Boost Software License, <P><I>Use, modification and distribution are subject to the Boost Software License,
Version 1.0. (See accompanying file <A href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</A> Version 1.0. (See accompanying file <A href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</A>
or copy at <A href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</A>)</I></P> or copy at <A href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</A>)</I></P>
</body> </body>
</html> </html>