* lisp/helpers.el: Actually commit the library code.
[emacs.git] / lisp / helpers.el
blob51361043eb236d5abeaa420dfa955a148a942125
1 ;;; helpers.el --- Some non-essential library extensions
3 ;; Copyright (C) 2013 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: convenience
7 ;; Package: emacs
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;;; Code:
28 (defsubst hash-table-keys (hash-table)
29 "Return a list of keys in HASH-TABLE."
30 (let ((keys '()))
31 (maphash (lambda (k v) (push k keys)) hash-table)
32 keys))
34 (defsubst hash-table-values (hash-table)
35 "Return a list of values in HASH-TABLE."
36 (let ((values '()))
37 (maphash (lambda (k v) (push v values)) hash-table)
38 values))
40 (provide 'helpers)
42 ;;; helpers.el ends here