Up

NSBitmapCharSet class reference

Authors

Adam Fedor (fedor@boulder.colorado.edu)

Version: 1.16

Date: 2005/02/22 11:22:43

Copyright: (C) 1993,1994 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSBitmapCharSet class
  2. Software documentation for the NSMutableBitmapCharSet class

Software documentation for the NSBitmapCharSet class

NSBitmapCharSet : NSCharacterSet

Declared in:
Foundation/NSBitmapCharSet.h
Standards:

An NSCharacterSet that stores the set of unicode characters in it as a simple bitmap. Implementation is very efficient.


Instance Variables

Method summary

initWithBitmap: 

- (id) initWithBitmap: (NSData*)bitmap;

Init directly with bitmap data. bitmap should be BITMAP_SIZE long, which is currently 2^16 / 8.
Designated initializer




Instance Variables for NSBitmapCharSet Class

_data

@protected char _data;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Software documentation for the NSMutableBitmapCharSet class

NSMutableBitmapCharSet : NSMutableCharacterSet

Declared in:
Foundation/NSBitmapCharSet.h
Standards:

Mutable version of NSBitmapCharSet .


Instance Variables

Method summary

initWithBitmap: 

- (id) initWithBitmap: (NSData*)bitmap;

Init directly with bitmap data. bitmap should be BITMAP_SIZE long, which is currently 2^16 / 8.




Instance Variables for NSMutableBitmapCharSet Class

_data

@protected char _data;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.






Up