代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/111374/6155552
hh boolean.hh
/**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either ver
www.eeworm.com/read/110972/6162466
hh boolean.hh
/**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either ver
www.eeworm.com/read/104260/6205687
java boolean.java
/*
* Java core library component.
*
* Copyright (c) 1997, 1998
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file "license.terms" for information on usage and redistri
www.eeworm.com/read/100285/6271983
out boolean.out
QUERY: SELECT 1 AS one;
one
---
1
(1 row)
QUERY: SELECT 't'::bool AS true;
true
----
t
(1 row)
QUERY: SELECT 'f'::bool AS false;
false
-----
f
(1 row)
QUERY: SELECT 't'::bool or 'f'::bool
www.eeworm.com/read/100285/6272051
sql boolean.sql
--
-- boolean.source
--
-- $Header: /usr/local/cvsroot/pgsql/src/test/regress/sql/boolean.sql,v 1.5 1997/12/01 02:45:59 thomas Exp $
--
--
-- sanity check - if this fails go insane!
--
SELECT 1 AS on
www.eeworm.com/read/223932/6357973
class boolean.class
www.eeworm.com/read/481424/6640621
h boolean.h
/* My favorite names for boolean values */
#define No 0
#define Yes 1
#define Maybe 2 /* tri-state boolean, actually */
www.eeworm.com/read/479064/6698786
h boolean.h
/*
* Copyright (C) 1998, 1999 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided th
www.eeworm.com/read/410432/11287669
c boolean.c
// boolean.c -- using a _Bool variable
#include
int main(void)
{
long num;
long sum = 0L;
_Bool input_is_good;
printf("Please enter an integer to be summed ");