Home | History | Annotate | Download | only in builtin

Lines Matching refs:built

125 // The append built-in function appends elements to the end of a slice. If
136 // The copy built-in function copies elements from a source slice into a
143 // The delete built-in function deletes the element with the specified key
148 // The len built-in function returns the length of v, according to its type:
157 // The cap built-in function returns the capacity of v, according to its type:
166 // The make built-in function allocates and initializes an object of type
184 // The new built-in function allocates memory. The first argument is a type,
189 // The complex built-in function constructs a complex value from two
196 // The real built-in function returns the real part of the complex number c.
200 // The imag built-in function returns the imaginary part of the complex
205 // The close built-in function closes a channel, which must be either
215 // The panic built-in function stops normal execution of the current
224 // is called panicking and can be controlled by the built-in function
228 // The recover built-in function allows a program to manage behavior of a
239 // The print built-in function formats its arguments in an
245 // The println built-in function formats its arguments in an
252 // The error built-in interface type is the conventional interface for