代码搜索:Built-In
找到约 2,787 项符合「Built-In」的源代码
代码结果 2,787
www.eeworm.com/read/376006/2718177
sql boolean.sql
--
-- BOOLEAN
--
--
-- sanity check - if this fails go insane!
--
SELECT 1 AS one;
-- ******************testing built-in type bool********************
-- check bool type-casting as well as and, or
www.eeworm.com/read/147693/12538522
pl frequent.pl
% Library of frequently used predicates
:- op( 900, fy, not).
% not Goal): negation as failure;
% Note: This is often available as a built-in predicate,
% often written as prefix operator
www.eeworm.com/read/366065/9834573
c tclwinreg.c
/*
* tclWinReg.c --
*
* This file contains the implementation of the "registry" Tcl
* built-in command. This command is built as a dynamically
* loadable extension in a separate DLL.
*
* Copyr
www.eeworm.com/read/279804/10392913
js 04.js
// Borrow methods from one class for use by another.
// The arguments should be the constructor functions for the classes
// Methods of built-in types such as Object, Array, Date and RegExp are
// not
www.eeworm.com/read/399805/7835070
m videoread.m
function mov=videoread(fname,varargin)
%VIDEOREAD Read an video file in a mannter compatible with Matlab's
% built-in AVIREAD function, but using a videoReader object to do
% the
www.eeworm.com/read/100285/6270688
sgml func.sgml
Functions
Describes the built-in functions available
in Postgres.
www.eeworm.com/read/100285/6270693
sgml oper.sgml
Operators
Describes the built-in operators available in
Postgres.
www.eeworm.com/read/100285/6272019
sql char.sql
-- ****************** test built-in type char **************
--
-- all inputs are SILENTLY truncated at 1 character
--
-- fixed-length by value
-- internally passed by value if
www.eeworm.com/read/100285/6272078
sql polygon.sql
-- *************testing built-in type polygon ****************
--
-- polygon logic
--
-- 3 o
-- |
-- 2 + |
-- / |
-- 1 # o +
-- / |
-- 0 #-----o-+
--
-- 0 1 2 3 4
--
CR