COMMON LISP JP > Archives > 2014/07/01

2014/07/01 15:36:42 UTCg000001
#
sbcl 1.2.1のリリースノートですが、
#
enhancement: support for GNU/kFreeBSD distributions. (#1079954, thanks to Christoph Egger)
enhancement: experimental support for threads on NetBSD/x86-64. (thanks to Robert Swindells)
enhancement: support for DragonFly BSD. (#1292845, thanks to Vasily Postnicov)
#
これらは、新しいプラットフォームのサポートですね。DragonFly BSDっていったらマルチコアな感じですが、Linuxのサポートと比べてどうなるのか、どうなっているのか知りたいですね。
2014/07/01 15:47:08 UTCg000001
#
- bug fix: TYPE-OF must not return AND/OR/NOT expressions. (#1317308)
#
;;; バグ
(type-of (make-array 5 :displaced-to (make-array 10)))
;=> (AND (VECTOR T 5) (NOT SIMPLE-ARRAY))

;;; 修正後
(type-of (make-array 5 :displaced-to (make-array 10)))
;=>  (VECTOR T 5)
#
ってことみたいです。
#
b. the type returned does not involve and, eql, member, not, or, satisfies, or values. だそうです
2014/07/01 15:53:06 UTCg000001
#
displacedアレイでだけの話みたいなので良く見付けたという感じですね。
#
〜つづく〜