Tcl_DoubleObj


HOME

Tcl_DoubleObj

NAME
SYNOPSIS
ARGUMENTS
DESCRIPTION
SEE ALSO
KEYWORDS

___________________________

NAME

Tcl_NewDoubleObj, Tcl_SetDoubleObj, Tcl_GetDoubleFromObj − manipulate Tcl objects as floating-point values

SYNOPSIS

#include <tcl.h>

Tcl_Obj *
Tcl_NewDoubleObj
(doubleValue)

Tcl_SetDoubleObj(objPtr, doubleValue)

int
Tcl_GetDoubleFromObj
(interp, objPtr, doublePtr)

ARGUMENTS

double doubleValue (in)

A double-precision floating-point value used to initialize or set a Tcl object.

Tcl_Obj *objPtr (in/out)

For Tcl_SetDoubleObj, this points to the object in which to store a double value. For Tcl_GetDoubleFromObj, this refers to the object from which to retrieve a double value.

Tcl_Interp *interp (in/out)

When non-NULL, an error message is left here when double value retrieval fails.

double *doublePtr (out)

Points to place to store the double value obtained from objPtr.

______________

DESCRIPTION

These procedures are used to create, modify, and read Tcl objects that hold double-precision floating-point values.

Tcl_NewDoubleObj creates and returns a new Tcl object initialized to the double value doubleValue. The returned Tcl object is unshared.

Tcl_SetDoubleObj sets the value of an existing Tcl object pointed to by objPtr to the double value doubleValue. The objPtr argument must point to an unshared Tcl object. Any attempt to set the value of a shared Tcl object violates Tcl’s copy-on-write policy. Any existing string representation or internal representation in the unshared Tcl object will be freed as a consequence of setting the new value.

Tcl_GetDoubleFromObj attempts to retrieve a double value from the Tcl object objPtr. If the attempt succeeds, then TCL_OK is returned, and the double value is written to the storage pointed to by doublePtr. If the attempt fails, then TCL_ERROR is returned, and if interp is non-NULL, an error message is left in interp. The Tcl_ObjType of objPtr may be changed to make subsequent calls to Tcl_GetDoubleFromObj more efficient.

SEE ALSO

Tcl_NewObj, Tcl_DecrRefCount, Tcl_IncrRefCount, Tcl_GetObjResult

KEYWORDS

double, double object, double type, internal representation, object, object type, string representation



More Linux Commands

manpages/glColor4s.3gl.html
glColor4s(3gl) - set the current color - Linux manual page
The GL stores both a current single-valued color index and a current four-valued RGBA color. glColor sets a new four-valued RGBA color. glColor has two major va

manpages/glutReshapeWindow.3.html
glutReshapeWindow(3) - requests a change to the size of the
glutReshapeWindow requests a change in the size of the current window. The width and height parameters are size extents in pixels. The width and height must be

manpages/nofilter.3x.lc.html
nofilter.3x(lc) miscellaneous curses utility routines.......
The unctrl routine returns a character string which is a printable representation of the character c, ignoring attributes. Control characters are displayed in t

manpages/glPolygonOffset.3gl.html
glPolygonOffset(3gl) - set the scale and units used to calcu
When GL_POLYGON_OFFSET_FILL, GL_POLYGON_OFFSET_LINE, or GL_POLYGON_OFFSET_POINT is enabled, each fragments depth value will be offset after it is interpolated f

manpages/ispunct_l.3.html
ispunct_l(3) character classification functions (Man Page)
These functions check whether c, which must have the value of an unsigned char or EOF, falls into a certain character class according to the specified locale. T

manpages/gnutls_openpgp_privkey_export_dsa_raw.3.html
gnutls_openpgp_privkey_export_dsa_raw(3) - API function.....
gnutls_openpgp_privkey_export_dsa_raw.3 - This function will export the DSA private keys parameters found in the given certificate. The new parameters will be a

manpages/timerfd_settime.2.html
timerfd_settime(2) - timers that notify via file descriptors
These system calls create and operate on a timer that delivers timer expiration notifications via a file descriptor. They provide an alternative to the use of s

manpages/SDL_GetRGB.3.html
SDL_GetRGB(3) - Get RGB values from a pixel in the specified
Get RGB component values from a pixel stored in the specified pixel format. This function uses the entire 8-bit [0..255] range when converting color components

manpages/socket.7.html
socket(7) - Linux socket interface - Linux manual page......
This manual page describes the Linux networking socket layer user interface. The BSD compatible sockets are the uniform interface between the user process and t

manpages/page.content.html
page.content (Manual - Linux man page).....................
page.content - padsp starts the specified program and redirects its access to OSS compatible audio devices (/dev/dsp and auxiliary devices) to a PulseAudio soun

manpages/XUnloadFont.3.html
XUnloadFont(3) - load or unload fonts and font metric struct
The XLoadFont function loads the specified font and returns its associated font ID. If the font name is not in the Host Portable Character Encoding, the result

manpages/field_opts.3form.html
field_opts(3form) - set and get field options (Man Page)....
The function set_field_opts sets all the given fields option bits (field option bits may be logically-ORed together). The function field_opts_on turns on the gi





We can't live, work or learn in freedom unless the software we use is free.