Giter VIP home page Giter VIP logo

emacs-hash-lib's Introduction

elisp hash library

  • this is lisp hash library
  • it's esay to used hash

list-to-hash

(setq arg
'(
 list-test		'("a"  "foo"
    		   "b"	"bar"
    		   "c"	"baz")
 
 list-test2		 '("a"	"foo"
    		   "b"	"bar"
    		   "list"  '( "a"  "list-test2 a"
    			      "b"  "list-test2 b"
    			     ))
 
 ruby-mode		"ruby"
 lisp-interaction-mode	"bash"
 perl-mode		"perl"
 a		       '("b"	   '("c"  '("d"	 "eeee" )
    			     )
    		)
 "a"            "hoge"
 
))


;make hash
(setq hash (list-to-hash arg))

get-hash

(get-hash hash 'ruby-mode)
;=> "ruby"
 
(get-hash hash 'list-test "a")
;=> "foo"
 
(get-hash hash 'a "b" "c" "d")
;=> "eeee"

(get-hash hash "a" )
;=> "hoge"


(get-hash hash 'hoge )
;=> nil

(get-hash hash 'b "c" "d" "e")
;=> nil

dump-hash

 (dump-hash hash)

;result
"list-test => 
        a => foo ,
        b => bar ,
        c => baz  
list-test2 => 
        a => foo ,
        b => bar ,
        list => 
                a => list-test2 a ,
                b => list-test2 b  
ruby-mode => ruby ,
lisp-interaction-mode => bash ,
perl-mode => perl ,
a => 
        b => 
                c => 
                        d => eeee
a => hoge "

append-hash

;make-hash-table
(setq a_hash #s(hash-table test equal data( "a" "hoge"	 "b" "fuga" "c" "ccc")))
(setq b_hash #s(hash-table test equal data( "a" "test"	 "d" "ddd" "e" "eeee")))
(setq c_hash #s(hash-table test equal data( "f" "fffff"	 "g" "ggg" )))
 
;append hash
(setq ap_hash (append-hash a_hash b_hash c_hash))
 
 
;check
(dump-hash ap_hash)
;=> "a => test ,
;=> b => fuga ,
;=> c => ccc ,
;=> d => ddd ,
;=> e => eeee ,
;=> f => fffff ,
;=> g => ggg "

emacs-hash-lib's People

Contributors

mukaer avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.