Definitions for "Tuple" Add To Word List
Login or Register  | Word Lists | Search History

Pronounced "en-too-pull." This is a mathematical term for a finite sequence of n terms. For example, the set {1, 2, 3, 4} is a four-tuple. The set {Frank,...
Helpful?           0
A collection of one or more database attributes.
Helpful?           0
a collection of fields
Helpful?           0
a collection of values that is similar to a record but where the members do not have names
Helpful?           0
a (compound) value, while a list is a bucket
Helpful?           0
a grouping of several values in a single expression
Helpful?           0
a mutable sequence
Helpful?           0
an immutable aggregate of values comprised of a name and zero or more labeled fields
Helpful?           0
an immutable collection of objects separated by commas, usually enclosed in ()
Helpful?           0
an immutable list
Helpful?           0
an immutable sequence
Helpful?           0
an instance of the relation where the fields represent the key fields and value fields of a particular object
Helpful?           0
an ordered multiset of attributes , which are ordered pairs of domain and value
Helpful?           0
an ordered sequence of Fields, and implements the non-subclassable (structure-equivalence) version
Helpful?           0
an ordered sequence of values enclosed in parentheses
Helpful?           0
an ordered set of values (e
Helpful?           0
an unordered set of attribute values
Helpful?           0
a partial function from attribute names to atomic values
Helpful?           0
a sequence of fields that contain either a value or a variable
Helpful?           0
a sequence of items and can be used as a key-value pair
Helpful?           0
a sequence of objects of mixed type
Helpful?           0
a sequence of typed fields, where each expression has a value or a potential value
Helpful?           0
a sequence, written with parens, that behaves just like a list except that it cannot be changed in place
Helpful?           0
a set of attributes, which are ordered pairs of domain and value
Helpful?           0
a set of triples, each consisting of name, type (domain), and value, where the names are unique
Helpful?           0
a set of values that are associated with each other and passed around together as a group
Helpful?           0
a small set of fields holding values or variables, as in the following examples
Helpful?           0
A list of two or more values or expressions.
Helpful?           0
An ordered collection of members from different dimensions. For example, (Boston, [1995]) is a tuple formed by members of two dimensions: Geography and Time. A single member is a degenerated case of a tuple and can be used as an expression without the parentheses.
Helpful?           0
(RM) A function that assigns a constant value from the attribute domain to each attribute in a relation scheme. tables.php
Helpful?           0
A storage unit in a relational database. Each unit contains an ordered set of attribute values that are grouped together in 2-dimensional tables known as relations.
Helpful?           0
a set of values - In Python, a "tuple" is used to describe a set of two or more values which do not have to be of the same type. Python 2.0 tuple members cannot receive direct assignment, but an easy workaround is to regenerate the set to incorporate a changed value. Tuples are very useful for passing multiple values from one function to another in one step. A good example is a Tkinter font tuple: 'Helvetica',10,'bold' for 10-point Helvetica Bold, where the face and style are of type text but the point size is of type integer.
Helpful?           0
An ordered sequence of fixed length of values of arbitrary types. Tuples are used for both data storage and interprocess communication in the generative communication paradigm.
Helpful?           0
In programming languages, a tuple is an ordered set of values. Common uses for the tuple as a data type are: for passing a string of parameters from one program to another, or to represent a set of value attributes in a relational database.
Helpful?           0
A set of values for an attribute, synonymous with row.
Helpful?           0
In mathematics, a tuple is a finite sequence (also known as an "ordered list") of objects, each of a specified type. A tuple containing n objects is known as an "n-tuple". For example the 4-tuple (or "quadruple"), with components of respective types PERSON, DAY, MONTH and YEAR, could be used to record that a certain person was born on a certain day of a certain month of a certain year.
Helpful?           0