'개소리 왈왈 > 아마추어무선' 카테고리의 다른 글
아마추어 무선통신 - 안테나 종류 및 주파수 대역 (0) | 2013.02.19 |
---|---|
주파수 정리표 (0) | 2013.02.19 |
지인의 햄장비 목록 (0) | 2013.01.10 |
무전기 수리는 물건너 가고.. (0) | 2012.11.05 |
민영정보통신 (0) | 2012.11.03 |
아마추어 무선통신 - 안테나 종류 및 주파수 대역 (0) | 2013.02.19 |
---|---|
주파수 정리표 (0) | 2013.02.19 |
지인의 햄장비 목록 (0) | 2013.01.10 |
무전기 수리는 물건너 가고.. (0) | 2012.11.05 |
민영정보통신 (0) | 2012.11.03 |
> (quote a)
A
> 'a
A
> '(a)
(A)
> (quote (a))
(A) >'(+ 1 2)
(+ 1 2)
|
APPLY is also a Lisp primitive function.
APPLY takes a function and a list of objects as input. It invokes the specified function with those objects as its inputs. The first argument to APPLY should be quoted with #’ rather than an ordinary quote; #’ is the proper way to quote functions supplied as inputs to other functions. This will be explained in more detail in Chapter 7.
(apply #'+ '(2 3)) ⇒ 5
(apply #’equal '(12 17)) ⇒ nil
|
The #’ (or ‘‘sharp quote’’) notation is the correct way to quote a function in Common Lisp. If you want to see what the function CONS looks like in your implementation, try the following example in your Lisp:
> (setf fn #’cons)
#<Compiled-function CONS {6041410}>
> fn
#<Compiled-function CONS {6041410}>
> (type-of fn)
COMPILED-FUNCTION
> (funcall fn ’c ’d)
(C . D)
|
> #'+
#<SYSTEM-FUNCTION +>
> (function +)
#<SYSTEM-FUNCTION +>
|
lisp atom (0) | 2012.12.11 |
---|---|
lisp tutorial (0) | 2012.12.06 |
클로져 (0) | 2012.12.03 |
lisp는 리스트지 prefix 표기법이 아니다 (0) | 2012.11.19 |
lisp 관련 책 (0) | 2012.01.25 |
홈월드 1 CD 그리고 홈월드 리마스터!! (0) | 2015.06.23 |
---|---|
홈월드 2 컴플렉스 8.4.1 릴리즈 (0) | 2013.03.27 |
홈월드 2 관련 (0) | 2012.12.04 |
오랫만에 홈월드2 (0) | 2012.12.02 |
홈월드 1 CD 그리고 홈월드 리마스터!! (0) | 2015.06.23 |
---|---|
홈월드 2 컴플렉스 8.4.1 릴리즈 (0) | 2013.03.27 |
홈월드2 컴플렉스 MOD (0) | 2012.12.04 |
오랫만에 홈월드2 (0) | 2012.12.02 |
Example | Name | Effect |
---|---|---|
++$a | Pre-increment | Increments $a by one, then returns $a. |
$a++ | Post-increment | Returns $a, then increments $a by one. |
--$a | Pre-decrement | Decrements $a by one, then returns $a. |
$a-- | Post-decrement | Returns $a, then decrements $a by one. |
php framework / 읽을꺼리 (0) | 2014.04.09 |
---|---|
php 메뉴얼 (0) | 2014.03.28 |
php $_SERVER 변수 (0) | 2013.07.07 |
index.php가 다운받아지는 문제점 -_- (0) | 2013.02.22 |
php 간단정리 (0) | 2012.11.26 |
lisp tutorial (0) | 2012.12.06 |
---|---|
lisp - #' 와 ' (0) | 2012.12.05 |
lisp는 리스트지 prefix 표기법이 아니다 (0) | 2012.11.19 |
lisp 관련 책 (0) | 2012.01.25 |
lisp 문법 (0) | 2012.01.24 |
홈월드 1 CD 그리고 홈월드 리마스터!! (0) | 2015.06.23 |
---|---|
홈월드 2 컴플렉스 8.4.1 릴리즈 (0) | 2013.03.27 |
홈월드2 컴플렉스 MOD (0) | 2012.12.04 |
홈월드 2 관련 (0) | 2012.12.04 |
create database dbname; create table tablename ( fieldname type option, PRIMARY KEY(fieldname) ); drop database dbname; drop table tablename; desc tablename; use dbname; show databases; show tables; alter table tablename add fieldname type after fieldname; alter table tablename add fieldname type first; alter table tablename drop fieldname, fieldname, fieldname; alter table tablename modify fieldname type; alter table tablename change fieldname new_fieldname new_type; alter table tablename rename tablename; |
insert into table (fieldname, fieldname, fieldname) values (value, value, value); select fieldname from tablename where condition; select fieldname,fieldname,fieldname from tablename where condition; select * from tablename where condition; select fieldname from tablename where condition order by fieldname; select fieldname from tablename where condition order by fieldname desc; update tablename set fieldname=value where condition; delete from tablename where condition; condition = 같다 'a' 문자 a 'abc' 문자열 'abc' 'a%' a로 시작하는 모든 내용, a*과 같은 의미 '_a' 첫글짜는 상관없으나 그 다음에 1개가 a, ?a 와 같은 의미 and &&와 같은 의미 or ||와 같은 의미 |
mysql / mariaDB (1) | 2014.04.16 |
---|---|
mysql transaction (0) | 2014.04.08 |
mysql grant 문 (0) | 2014.04.01 |
mysql 암호변경하기 (0) | 2013.02.21 |
mysql 사용법(SQL) (4) | 2010.04.03 |
2013 CES 관련 글들을 보며 느낀 추세 (4) | 2013.01.13 |
---|---|
TC1100 무선랜 교체!! (0) | 2012.12.20 |
소니 VAIO 노트북 BIOS 암호 풀기 (0) | 2012.11.16 |
음? 이건 머지? (2) | 2012.11.12 |
KELP 2012 세미나 (0) | 2012.11.02 |
wan 에서 mac address 얻기 (0) | 2013.07.09 |
---|---|
축약주소 만들기 서비스 (0) | 2013.07.08 |
php-mobile-detect (0) | 2013.02.23 |
TD 태그 - Chrome 과 IE 차이? (0) | 2011.05.30 |
IE8 / Chrome으로 HTML 분석하기 (2) | 2011.03.09 |