Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / foundation / NSIndexPath.inc
Size: Mime:
{ Parsed from Foundation.framework NSIndexPath.h }


{$ifdef TYPES}
type
  NSIndexPathPtr = ^NSIndexPath;
{$endif}

{$ifdef CLASSES}

type
  NSIndexPath = objcclass external (NSObject, NSCopyingProtocol, NSSecureCodingProtocol)
  private
    _indexes: NSUIntegerPtr;
    {$if  not defined(__OBJC2__)}
    _hash: NSUInteger;
    {$endif}
    _length: NSUInteger;
    _reserved: pointer;
  public
    class function indexPathWithIndex (index: NSUInteger): instancetype; message 'indexPathWithIndex:';
    class function indexPathWithIndexes_length (indexes: NSUIntegerPtr { variable size array of NSUInteger }; length: NSUInteger): instancetype; message 'indexPathWithIndexes:length:';
    function initWithIndexes_length (indexes: NSUIntegerPtr { variable size array of NSUInteger }; length: NSUInteger): instancetype; message 'initWithIndexes:length:'; { NS_DESIGNATED_INITIALIZER }
    function initWithIndex (index: NSUInteger): instancetype; message 'initWithIndex:';
    function indexPathByAddingIndex (index: NSUInteger): NSIndexPath; message 'indexPathByAddingIndex:';
    function indexPathByRemovingLastIndex: NSIndexPath; message 'indexPathByRemovingLastIndex';
    function indexAtPosition (position: NSUInteger): NSUInteger; message 'indexAtPosition:';
    function length: NSUInteger; message 'length';
    procedure getIndexes (indexes: NSUIntegerPtr); message 'getIndexes:';
    function compare (otherObject: NSIndexPath): NSComparisonResult; message 'compare:';

    { Adopted protocols }
    function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
    procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
    function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
    class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
  end;
{$endif}