Compiled gsdoc into HTML.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6575 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
James Dessart 2000-05-06 16:22:13 +00:00
parent b330d6ca36
commit a81b326b8f

View file

@ -10,6 +10,8 @@
<dl>
<dt><a href="http://www.gnustep.org/developers/whoiswho.html">Richard Frith-Macdonald</a>
<dd>
<dt>James Dessart
<dd>
</dl>
<p>Version: 0.1</p>
<p>Date: 28 February, 2000</p>
@ -21,6 +23,16 @@
</p>
<hr>
<p>
NSString objects represent an immutable string of characters. NSString itself is an
abstract class which provides factory methods to generate objects of unspecified
subclasses.</p>
<p>
A constant NSString can be created using the following syntax: <code>@"..."</code>,
where the contents of the quotes are the string, using only ASCII characters.</p>
<ul>
<li><a href="NSString.html#method-0">+availableStringEncodings</a>
@ -116,16 +128,25 @@
<h2><a name="method-0">availableStringEncodings</a></h2>
+ (const NSStringEncoding*) <b>availableStringEncodings</b><br>
<p>
Returns an array of all available string encodings, terminated by a null value.</p>
<hr>
<h2><a name="method-1">defaultCStringEncoding</a></h2>
+ (NSStringEncoding) <b>defaultCStringEncoding</b><br>
<p>
Returns the encoding used for any method accepting a C string.</p>
<hr>
<h2><a name="method-2">localizedNameOfStringEncoding:</a></h2>
+ (NSString*) <b>localizedNameOfStringEncoding:</b> (NSStringEncoding)encoding<br>
<p>
Returns the localized name of the encoding specified by <var>encoding</var>.</p>
<hr>
<h2><a name="method-3">localizedStringWithFormat:</a></h2>