Release 5.  Copyright ©1994-1998 by TipTop Software, Inc.  All Rights Reserved.






TTPerlSV




Inherits From: TTInterpValue
Conforms to: TTInterpValueProtocol
Declared In: <ObjPerl/TTPerlSV.h>




Class Description

This class cluster is a simple wrapper around Perl value types.  (SV, AV, HV, etc.)




Method Types

initWithPerlSValue:
perlSValue
isMortal
perlType
refCount
refCountDec
refCountInc




Instance Methods

initWithPerlSValue:
  initWithPerlSValue:(SV*)v

Initializes the receiver with the specified perl SV.




isMortal
  (BOOL)isMortal

Returns YES if the receiver is a mortal perl value.




perlSValue
  (SV*)perlSValue

Returns corresponding perl SV.

See also:  - initWithPerlSValue:




perlType
  (int)perlType

Returns value's perl type.




refCount
  (int)refCount

Returns value's perl reference count.

See also:  -refCountDec, -refCountInc




refCountDec
  (void)refCountDec

Decrements value's perl reference count.

See also:  -refCountInc, -refCount




refCountInc
  (void)refCountInc

Increments value's perl reference count.

See also:  -refCountDec, -refCount




###