implicit type conversions - Definition. Was ist implicit type conversions
Diclib.com
Online-Wörterbuch

Was (wer) ist implicit type conversions - definition

TYPE SYSTEM WHERE TYPES ARE ASSOCIATED WITH VALUES AND NOT VARIABLES
Implicit typing; Latent type

implicit type conversion         
CHANGING AN EXPRESSION FROM ONE DATA TYPE TO ANOTHER
Explicit type conversion; Typecasting (programming); Typecast (programming); Cast (computer science); Type conversions; Implicit coercion; Cast (computer programming); Implicit type conversion; Type coercion; Const cast; Implicit conversion; Upcasting; Type promotion; Type Conversion; Typecasting (hacking); Typecasting (computing); Type casting (computer programming); Typecasting (computer programming); Typecasting (computer science); Type casting (computer science); Type casting (computing); Cast (computing); Casting (computing); Casting (computer programming); Casting (computer science); Integer promotion; Type juggling; Implicit type casting; Explicit type casting
<programming> (Or "coercion") The abilty of some compilers to automatically insert type conversion functions where an expression of one type is used in a context where another type is expected. A common example is coercion of integers to reals so that an expression like sin(1) is compiled as sin(integerToReal(1)) where sin is of type Real -> Real. A coercion is usually performed automatically by the compiler whereas a cast is an explicit type conversion inserted by the programmer. See also subtype. (1997-07-28)
Implicit stereotype         
UNREFLECTED, MISTAKEN ATTRIBUTIONS TO AND DESCRIPTIONS OF SOCIAL GROUPS
User:Psy463 1029/Implicit stereotype; Implicit stereotypes; Unconscious bias; Implicit bias; Explicit stereotype; Unconscious biases; Implicit biases
In social identity theory, an implicit bias or implicit stereotype, is the pre-reflective attribution of particular qualities by an individual to a member of some social out group.
Implicit function         
FUNCTION DEFINED BY A RELATION OF THE FORM 𝑅(𝑥,𝑦)=0, WHERE 𝑅 IS A FUNCTION OF SEVERAL VARIABLES AND THERE IS A UNIQUE 𝑦 THAT SATISFIES THE RELATION FOR EVERY 𝑥
Implicit differentiation; Implicitly defined; Implicitly defined function; Implicit functions; Implcit differentiation; Explicit function; Implicit plot; Implicit derivative; Implicit & explicit functions; Implicit and explicit functions; Implicit equation; R(x, y)=0; R(x, y, z)=0; Function implicit; Draft:Implicit differentiation
In mathematics, an implicit equation is a relation of the form R(x_1, \dots, x_n) = 0, where is a function of several variables (often a polynomial). For example, the implicit equation of the unit circle is x^2 + y^2 - 1 = 0.

Wikipedia

Latent typing

In computer programming, latent typing refers to a type system where types are associated with values and not variables. An example latently typed language is Scheme. This typically requires run-time type checking and so is commonly used synonymously with dynamic typing.