The cl-twitter Reference Manual
Table of Contents
The cl-twitter Reference Manual
This is the cl-twitter Reference Manual, version 0.5,
generated automatically by Declt version 3.0 "Montgomery Scott"
on Tue Dec 22 12:54:19 2020 GMT+0.
1 Introduction
CL-TWITTER
Introduction
On 2010-10-24 I cloned cl-twitter's darcs repository
of Ian Eslick's common lisp twitter package..
The package in the repo no longer compiled. After getting it to compile I found that it did not work with twitter's oauth protocol
which at that point was the only way to get authorized access to twitter.
It turned out that all the pieces were in place to enable the open authorization protocol. After doing a quick review
I found that about half
of the twitter api was more-or-less covered.
I split the code into three pieces :
- an api piece, which enables calls to twitter's rest api.
- a twitter repl client.
- a database store.
Consult the respective readme's for more information.
Current status
api status
The rest api is fully covered.
The streams tweets resources have not been implemented.
twitter repl client
The twitter repl client is functional. What's missing are good pretty printer outputs for some twitter resources.
db api
See the README for that module.
2 Systems
The main system appears first, followed by any subsystem dependency.
2.1 cl-twitter
- Maintainer
Fons Haffmans
- Author
Ian Eslick
- License
LLGPL
- Description
An interface to Twitter
- Version
0.5
- Dependencies
- cl-json
- trivial-http
- drakma
- anaphora
- cl-ppcre
- closer-mop
- cl-oauth
- url-rewrite
- Source
cl-twitter.asd (file)
- Component
api (module)
3 Modules
Modules are listed depth-first from the system components tree.
3.1 cl-twitter/api
- Parent
cl-twitter (system)
- Location
api/
- Components
-
4 Files
Files are sorted by type and then listed depth-first from the systems
components trees.
4.1 Lisp
4.1.1 cl-twitter.asd
- Location
cl-twitter.asd
- Systems
cl-twitter (system)
- Packages
cl-twitter-asd
4.1.2 cl-twitter/api/package.lisp
- Parent
api (module)
- Location
api/package.lisp
- Packages
twitter
4.1.3 cl-twitter/api/twitter-vars.lisp
- Dependency
package.lisp (file)
- Parent
api (module)
- Location
api/twitter-vars.lisp
- Exported Definitions
*http-request-function* (special variable)
- Internal Definitions
-
4.1.4 cl-twitter/api/utils.lisp
- Dependency
twitter-vars.lisp (file)
- Parent
api (module)
- Location
api/utils.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.5 cl-twitter/api/twitter-macro.lisp
- Dependency
utils.lisp (file)
- Parent
api (module)
- Location
api/twitter-macro.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.6 cl-twitter/api/url-shortners.lisp
- Dependency
twitter-macro.lisp (file)
- Parent
api (module)
- Location
api/url-shortners.lisp
- Exported Definitions
get-tinyurl (function)
- Internal Definitions
-
4.1.7 cl-twitter/api/commands.lisp
- Dependency
url-shortners.lisp (file)
- Parent
api (module)
- Location
api/commands.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.8 cl-twitter/api/elements.lisp
- Dependency
commands.lisp (file)
- Parent
api (module)
- Location
api/elements.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.9 cl-twitter/api/dictionary.lisp
- Dependency
elements.lisp (file)
- Parent
api (module)
- Location
api/dictionary.lisp
4.1.10 cl-twitter/api/conditions.lisp
- Dependency
dictionary.lisp (file)
- Parent
api (module)
- Location
api/conditions.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.11 cl-twitter/api/twitter-op.lisp
- Dependency
conditions.lisp (file)
- Parent
api (module)
- Location
api/twitter-op.lisp
- Exported Definitions
twitter-op (method)
- Internal Definitions
-
4.1.12 cl-twitter/api/twitter-user.lisp
- Dependency
twitter-op.lisp (file)
- Parent
api (module)
- Location
api/twitter-user.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.13 cl-twitter/api/twitter-tweet-status.lisp
- Dependency
twitter-user.lisp (file)
- Parent
api (module)
- Location
api/twitter-tweet-status.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.14 cl-twitter/api/twitter-application.lisp
- Dependency
twitter-tweet-status.lisp (file)
- Parent
api (module)
- Location
api/twitter-application.lisp
- Internal Definitions
-
4.1.15 cl-twitter/api/twitter-entity.lisp
- Dependency
twitter-application.lisp (file)
- Parent
api (module)
- Location
api/twitter-entity.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.16 cl-twitter/api/twitter-timeline.lisp
- Dependency
twitter-entity.lisp (file)
- Parent
api (module)
- Location
api/twitter-timeline.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.17 cl-twitter/api/twitter-trends.lisp
- Dependency
twitter-timeline.lisp (file)
- Parent
api (module)
- Location
api/twitter-trends.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.18 cl-twitter/api/twitter-social-graph.lisp
- Dependency
twitter-trends.lisp (file)
- Parent
api (module)
- Location
api/twitter-social-graph.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.19 cl-twitter/api/twitter-account.lisp
- Dependency
twitter-social-graph.lisp (file)
- Parent
api (module)
- Location
api/twitter-account.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.20 cl-twitter/api/twitter-blocks.lisp
- Dependency
twitter-account.lisp (file)
- Parent
api (module)
- Location
api/twitter-blocks.lisp
- Internal Definitions
-
4.1.21 cl-twitter/api/twitter-messages.lisp
- Dependency
twitter-blocks.lisp (file)
- Parent
api (module)
- Location
api/twitter-messages.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.22 cl-twitter/api/twitter-friendship.lisp
- Dependency
twitter-messages.lisp (file)
- Parent
api (module)
- Location
api/twitter-friendship.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.23 cl-twitter/api/twitter-favorites.lisp
- Dependency
twitter-friendship.lisp (file)
- Parent
api (module)
- Location
api/twitter-favorites.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.24 cl-twitter/api/twitter-saved-searches.lisp
- Dependency
twitter-favorites.lisp (file)
- Parent
api (module)
- Location
api/twitter-saved-searches.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.25 cl-twitter/api/twitter-search.lisp
- Dependency
twitter-saved-searches.lisp (file)
- Parent
api (module)
- Location
api/twitter-search.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.26 cl-twitter/api/twitter-notifications.lisp
- Dependency
twitter-search.lisp (file)
- Parent
api (module)
- Location
api/twitter-notifications.lisp
- Exported Definitions
-
4.1.27 cl-twitter/api/twitter-lists.lisp
- Dependency
twitter-notifications.lisp (file)
- Parent
api (module)
- Location
api/twitter-lists.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.28 cl-twitter/api/twitter-list-members.lisp
- Dependency
twitter-lists.lisp (file)
- Parent
api (module)
- Location
api/twitter-list-members.lisp
- Exported Definitions
collect-user-list-members (function)
- Internal Definitions
-
4.1.29 cl-twitter/api/twitter-list-subscribers.lisp
- Dependency
twitter-list-members.lisp (file)
- Parent
api (module)
- Location
api/twitter-list-subscribers.lisp
- Internal Definitions
-
4.1.30 cl-twitter/api/twitter-miscellaneous.lisp
- Dependency
twitter-list-subscribers.lisp (file)
- Parent
api (module)
- Location
api/twitter-miscellaneous.lisp
- Exported Definitions
-
4.1.31 cl-twitter/api/twitter-geo.lisp
- Dependency
twitter-miscellaneous.lisp (file)
- Parent
api (module)
- Location
api/twitter-geo.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.32 cl-twitter/api/twitter-generic-lookup.lisp
- Dependency
twitter-geo.lisp (file)
- Parent
api (module)
- Location
api/twitter-generic-lookup.lisp
- Internal Definitions
-
4.1.33 cl-twitter/api/twitter-show.lisp
- Dependency
twitter-generic-lookup.lisp (file)
- Parent
api (module)
- Location
api/twitter-show.lisp
- Exported Definitions
-
- Internal Definitions
*seperator* (special variable)
4.1.34 cl-twitter/api/twitter-db.lisp
- Dependency
twitter-show.lisp (file)
- Parent
api (module)
- Location
api/twitter-db.lisp
- Exported Definitions
-
- Internal Definitions
-
4.1.35 cl-twitter/api/twitter-cache.lisp
- Dependency
twitter-db.lisp (file)
- Parent
api (module)
- Location
api/twitter-cache.lisp
- Exported Definitions
-
- Internal Definitions
-
5 Packages
Packages are listed by definition order.
5.1 cl-twitter-asd
- Source
cl-twitter.asd
- Use List
- asdf/interface
- common-lisp
5.2 twitter
- Source
package.lisp (file)
- Nicknames
-
- Use List
- anaphora
- json
- drakma
- common-lisp
- Exported Definitions
-
- Internal Definitions
-
6 Definitions
Definitions are sorted by export status, category, package, and then by
lexicographic order.
6.1 Exported definitions
6.1.1 Special variables
- Special Variable: *http-request-function*
-
Function used to make HTTP requests. Must conform exactly to Drakma’s specifications.
- Package
twitter
- Source
twitter-vars.lisp (file)
-
The authenticated user
- Package
twitter
- Source
elements.lisp (file)
6.1.2 Macros
- Macro: map-reduce-cache COLLECTION &key MAP REDUCE
-
- Package
twitter
- Source
twitter-cache.lisp (file)
- Macro: use-cache ()
-
- Package
twitter
- Source
twitter-cache.lisp (file)
- Macro: with-cursor (&key MAX COLLECTOR SKIP EXTRACTOR CONTROLLER TEST CURSOR) &rest BODY
-
- Package
twitter
- Source
twitter-macro.lisp (file)
- Macro: with-paging (&key MAX MAX-PAGES COLLECTOR SKIP CONTROLLER TEST) &rest BODY
-
- Package
twitter
- Source
twitter-macro.lisp (file)
6.1.3 Functions
- Function: collect-user-list-members LIST-OWNER LIST-ID &key MAX SKIP
-
- Package
twitter
- Source
twitter-list-members.lisp (file)
- Function: command-help &optional COMMAND-NAME
-
Interactive printing of command arguments
- Package
twitter
- Source
commands.lisp (file)
- Function: default-file-path DIRNAME FILENAME
-
- Package
twitter
- Source
utils.lisp (file)
- Function: direct-messages-sent &key SINCE MAX-ID COUNT PAGE INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-messages.lisp (file)
- Function: do-search QUERY &key LANG LOCALE COUNT SINCE-ID UNTIL GEOCODE RESULT-TYPE MAX-ID INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-search.lisp (file)
- Function: do-user-search Q &key MAX SKIP CONTAINER
-
- Package
twitter
- Source
twitter-user.lisp (file)
- Function: drop-cache TYPE
-
- Package
twitter
- Source
twitter-cache.lisp (file)
- Function: element-help TYPE
-
- Package
twitter
- Source
elements.lisp (file)
- Function: end-session ()
-
- Package
twitter
- Source
twitter-account.lisp (file)
-
- Package
twitter
- Source
twitter-favorites.lisp (file)
- Function: follow SCREEN-NAME
-
- Package
twitter
- Source
twitter-friendship.lisp (file)
- Function: follow-notification SCREEN-NAME &key USER-ID INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-notifications.lisp (file)
- Function: geo-print-places RESULT
-
- Package
twitter
- Source
twitter-geo.lisp (file)
- Function: geo-reverse-geocode LAT LONG &rest ARGS &key GRANULARITY MAX-RESULTS IP ACCURACY CONTAINED-WITHIN
-
- Package
twitter
- Source
twitter-geo.lisp (file)
- Function: geo-search &key LAT LONG QUERY GRANULARITY MAX-RESULTS IP ACCURACY CONTAINED-WITHIN ATTRIBUTE->STREET_ADDRESS
-
- Package
twitter
- Source
twitter-geo.lisp (file)
- Function: geo-token RESULT
-
- Package
twitter
- Source
twitter-geo.lisp (file)
- Function: get-tinyurl URL
-
Get a TinyURL for the given URL. Uses the TinyURL API service.
(c) by Chaitanaya Gupta via cl-twit
- Package
twitter
- Source
url-shortners.lisp (file)
- Function: get-user REF
-
- Package
twitter
- Source
twitter-user.lisp (file)
- Function: home-timeline &key SINCE-ID MAX-ID COUNT TRIM-USER EXCLUDE-REPLIES CONTRIBUTER-DETAILS INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-timeline.lisp (file)
- Function: leave-notification SCREEN-NAME &key USER-ID INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-notifications.lisp (file)
- Function: list-commands ()
-
- Package
twitter
- Source
commands.lisp (file)
- Function: mentions-timeline &key SINCE-ID MAX-ID COUNT TRIM-USER CONTRIBUTER-DETAILS INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-timeline.lisp (file)
- Function: print-geo-place REF
-
- Package
twitter
- Source
twitter-geo.lisp (file)
- Function: rate-limit-status ()
-
- Package
twitter
- Source
twitter-account.lisp (file)
- Function: read-cache-spec ()
-
- Package
twitter
- Source
twitter-cache.lisp (file)
- Function: report-spam SCREEN-NAME &key USER-ID
-
- Package
twitter
- Source
twitter-user.lisp (file)
-
- Package
twitter
- Source
twitter-timeline.lisp (file)
- Function: show-user SCREEN-NAME &key INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-user.lisp (file)
- Function: show-user-by-id USER-ID &key INCLUDE-ENTITIES
-
- Package
twitter
- Source
twitter-user.lisp (file)
-
- Package
twitter
- Source
utils.lisp (file)
-
- Package
twitter
- Source
twitter-miscellaneous.lisp (file)
-
- Package
twitter
- Source
twitter-miscellaneous.lisp (file)
-
- Package
twitter
- Source
twitter-miscellaneous.lisp (file)
-
- Package
twitter
- Source
twitter-favorites.lisp (file)
- Function: unfollow SCREEN-NAME
-
- Package
twitter
- Source
twitter-friendship.lisp (file)
- Function: update-profile-colors &key PROFILE-BACKGROUND-COLOR PROFILE-TEXT-COLOR PROFILE-LINK-COLOR PROFILE-SIDEBAR-FILL-COLOR PROFILE-SIDEBAR-BORDER-COLOR INCLUDE_ENTITIES
-
- Package
twitter
- Source
twitter-account.lisp (file)
- Function: use-db DRIVER-PACKAGE &key SPEC TAG
-
- Package
twitter
- Source
twitter-db.lisp (file)
- Function: user-timeline SCREEN-NAME &key SINCE-ID MAX-ID COUNT TRIM-USER EXCLUDE-REPLIES CONTRIBUTER-DETAILS INCLUDE-RTS
-
- Package
twitter
- Source
twitter-timeline.lisp (file)
- Function: verify-credentials &key INCLUDE-ENTITIES SKIP-STATUS INCLUDE-EMAIL
-
- Package
twitter
- Source
twitter-account.lisp (file)
- Function: write-cache-spec ARGS &key SUPERSEDE
-
- Package
twitter
- Source
twitter-cache.lisp (file)
6.1.4 Generic functions
- Generic Function: cache-map-reduce COLLECTION MAP-FN REDUCE-FN &key FROM-END INITIAL-VALUE COLLECT
-
- Package
twitter
- Source
twitter-cache.lisp (file)
- Methods
- Method: cache-map-reduce (COLLECTION symbol) (MAP-FN function) (REDUCE-FN function) &key FROM-END INITIAL-VALUE
-
- Method: cache-map-reduce (COLLECTION symbol) (MAP-FN function) (REDUCE-FN (eql nil)) &key COLLECT
-
- Method: cache-map-reduce (COLLECTION symbol) (MAP-FN (eql nil)) (REDUCE-FN (eql nil)) &key COLLECT
-
- Generic Function: caches ()
-
- Package
twitter
- Methods
- Method: caches ()
-
- Source
twitter-cache.lisp (file)
- Generic Function: cursor-user-lists-id OBJECT
-
- Generic Function: (setf cursor-user-lists-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: cursor-user-lists-id (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf cursor-user-lists-id) NEW-VALUE (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: cursor-user-lists-lists OBJECT
-
- Generic Function: (setf cursor-user-lists-lists) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: cursor-user-lists-lists (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf cursor-user-lists-lists) NEW-VALUE (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: cursor-user-lists-next-cursor OBJECT
-
- Generic Function: (setf cursor-user-lists-next-cursor) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: cursor-user-lists-next-cursor (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf cursor-user-lists-next-cursor) NEW-VALUE (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: cursor-user-lists-next-cursor-str OBJECT
-
- Generic Function: (setf cursor-user-lists-next-cursor-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: cursor-user-lists-next-cursor-str (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf cursor-user-lists-next-cursor-str) NEW-VALUE (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: cursor-user-lists-previous-cursor OBJECT
-
- Generic Function: (setf cursor-user-lists-previous-cursor) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: cursor-user-lists-previous-cursor (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf cursor-user-lists-previous-cursor) NEW-VALUE (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: cursor-user-lists-previous-cursor-str OBJECT
-
- Generic Function: (setf cursor-user-lists-previous-cursor-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: cursor-user-lists-previous-cursor-str (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf cursor-user-lists-previous-cursor-str) NEW-VALUE (CURSOR-USER-LISTS cursor-user-lists)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: db-initialize &rest ARGS
-
- Package
twitter
- Source
twitter-db.lisp (file)
- Methods
- Method: db-initialize &rest ARGS
-
- Generic Function: db-map-reduce COLLECTION MAP-FN REDUCE-FN &key
-
- Package
twitter
- Source
twitter-db.lisp (file)
- Methods
- Method: db-map-reduce COLLECTION (MAP-FN function) (REDUCE-FN function) &key
-
- Generic Function: db-shutdown &rest ARGS
-
- Package
twitter
- Source
twitter-db.lisp (file)
- Methods
- Method: db-shutdown &rest ARGS
-
- Generic Function: db-status &rest ARGS
-
- Package
twitter
- Source
twitter-db.lisp (file)
- Methods
- Method: db-status &rest ARGS
-
- Generic Function: db-store-object COLLECTION LISPREC
-
- Package
twitter
- Source
twitter-db.lisp (file)
- Methods
- Method: db-store-object COLLECTION LISPREC
-
- Generic Function: delete-message MESSAGE
-
- Package
twitter
- Methods
- Method: delete-message (MESSAGE twitter-message)
-
- Source
twitter-messages.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-tweet-status.lisp (file)
-
- Source
twitter-tweet-status.lisp (file)
- Generic Function: end-session-error OBJECT
-
- Generic Function: (setf end-session-error) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: end-session-error (END-SESSION end-session)
-
automatically generated reader method
- Source
twitter-account.lisp (file)
- Method: (setf end-session-error) NEW-VALUE (END-SESSION end-session)
-
automatically generated writer method
- Source
twitter-account.lisp (file)
- Generic Function: end-session-request OBJECT
-
- Generic Function: (setf end-session-request) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: end-session-request (END-SESSION end-session)
-
automatically generated reader method
- Source
twitter-account.lisp (file)
- Method: (setf end-session-request) NEW-VALUE (END-SESSION end-session)
-
automatically generated writer method
- Source
twitter-account.lisp (file)
- Generic Function: entity-hashtags TWEET
-
- Package
twitter
- Methods
- Method: entity-hashtags (TWEET tweet)
-
- Source
twitter-entity.lisp (file)
- Generic Function: entity-media TWEET
-
- Package
twitter
- Methods
- Method: entity-media (TWEET tweet)
-
- Source
twitter-entity.lisp (file)
- Generic Function: entity-urls TWEET
-
- Package
twitter
- Methods
- Method: entity-urls (TWEET tweet)
-
- Source
twitter-entity.lisp (file)
- Generic Function: entity-user-mentions TWEET
-
- Package
twitter
- Methods
- Method: entity-user-mentions (TWEET tweet)
-
- Source
twitter-entity.lisp (file)
- Generic Function: geo-bounding-box-coordinates OBJECT
-
- Generic Function: (setf geo-bounding-box-coordinates) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-bounding-box-coordinates (GEO-BOUNDING-BOX geo-bounding-box)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-bounding-box-coordinates) NEW-VALUE (GEO-BOUNDING-BOX geo-bounding-box)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-bounding-box-id OBJECT
-
- Generic Function: (setf geo-bounding-box-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-bounding-box-id (GEO-BOUNDING-BOX geo-bounding-box)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-bounding-box-id) NEW-VALUE (GEO-BOUNDING-BOX geo-bounding-box)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-bounding-box-type OBJECT
-
- Generic Function: (setf geo-bounding-box-type) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-bounding-box-type (GEO-BOUNDING-BOX geo-bounding-box)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-bounding-box-type) NEW-VALUE (GEO-BOUNDING-BOX geo-bounding-box)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-coordinate-id OBJECT
-
- Generic Function: (setf geo-coordinate-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-coordinate-id (GEO-COORDINATE geo-coordinate)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-coordinate-id) NEW-VALUE (GEO-COORDINATE geo-coordinate)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-coordinate-lat OBJECT
-
- Generic Function: (setf geo-coordinate-lat) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-coordinate-lat (GEO-COORDINATE geo-coordinate)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-coordinate-lat) NEW-VALUE (GEO-COORDINATE geo-coordinate)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-coordinate-long OBJECT
-
- Generic Function: (setf geo-coordinate-long) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-coordinate-long (GEO-COORDINATE geo-coordinate)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-coordinate-long) NEW-VALUE (GEO-COORDINATE geo-coordinate)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-attributes OBJECT
-
- Generic Function: (setf geo-place-attributes) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-attributes (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-attributes) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-bounding-box OBJECT
-
- Generic Function: (setf geo-place-bounding-box) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-bounding-box (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-bounding-box) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-code OBJECT
-
- Generic Function: (setf geo-place-code) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-code (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-code) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-contained-within OBJECT
-
- Generic Function: (setf geo-place-contained-within) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-contained-within (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-contained-within) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-country OBJECT
-
- Generic Function: (setf geo-place-country) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-country (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-country) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-country-code OBJECT
-
- Generic Function: (setf geo-place-country-code) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-country-code (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-country-code) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-full-name OBJECT
-
- Generic Function: (setf geo-place-full-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-full-name (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-full-name) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-geometry OBJECT
-
- Generic Function: (setf geo-place-geometry) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-geometry (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-geometry) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-id OBJECT
-
- Generic Function: (setf geo-place-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-id (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-id) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-name OBJECT
-
- Generic Function: (setf geo-place-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-name (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-name) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-place-type OBJECT
-
- Generic Function: (setf geo-place-place-type) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-place-type (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-place-type) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-polylines OBJECT
-
- Generic Function: (setf geo-place-polylines) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-polylines (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-polylines) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-place-url OBJECT
-
- Generic Function: (setf geo-place-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-place-url (GEO-PLACE geo-place)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-place-url) NEW-VALUE (GEO-PLACE geo-place)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-places-id OBJECT
-
- Generic Function: (setf geo-places-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-places-id (GEO-PLACES geo-places)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-places-id) NEW-VALUE (GEO-PLACES geo-places)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-places-places OBJECT
-
- Generic Function: (setf geo-places-places) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-places-places (GEO-PLACES geo-places)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-places-places) NEW-VALUE (GEO-PLACES geo-places)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-places-token OBJECT
-
- Generic Function: (setf geo-places-token) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-places-token (GEO-PLACES geo-places)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-places-token) NEW-VALUE (GEO-PLACES geo-places)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-query-id OBJECT
-
- Generic Function: (setf geo-query-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-query-id (GEO-QUERY geo-query)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-query-id) NEW-VALUE (GEO-QUERY geo-query)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-query-params OBJECT
-
- Generic Function: (setf geo-query-params) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-query-params (GEO-QUERY geo-query)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-query-params) NEW-VALUE (GEO-QUERY geo-query)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-query-type OBJECT
-
- Generic Function: (setf geo-query-type) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-query-type (GEO-QUERY geo-query)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-query-type) NEW-VALUE (GEO-QUERY geo-query)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-query-url OBJECT
-
- Generic Function: (setf geo-query-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-query-url (GEO-QUERY geo-query)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-query-url) NEW-VALUE (GEO-QUERY geo-query)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-result-id OBJECT
-
- Generic Function: (setf geo-result-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-result-id (GEO-RESULT geo-result)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-result-id) NEW-VALUE (GEO-RESULT geo-result)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-result-query OBJECT
-
- Generic Function: (setf geo-result-query) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-result-query (GEO-RESULT geo-result)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-result-query) NEW-VALUE (GEO-RESULT geo-result)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: geo-result-result OBJECT
-
- Generic Function: (setf geo-result-result) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: geo-result-result (GEO-RESULT geo-result)
-
automatically generated reader method
- Source
twitter-geo.lisp (file)
- Method: (setf geo-result-result) NEW-VALUE (GEO-RESULT geo-result)
-
automatically generated writer method
- Source
twitter-geo.lisp (file)
- Generic Function: hashtag-id OBJECT
-
- Generic Function: (setf hashtag-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: hashtag-id (HASHTAG hashtag)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf hashtag-id) NEW-VALUE (HASHTAG hashtag)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: hashtag-indices OBJECT
-
- Generic Function: (setf hashtag-indices) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: hashtag-indices (HASHTAG hashtag)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf hashtag-indices) NEW-VALUE (HASHTAG hashtag)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: hashtag-text OBJECT
-
- Generic Function: (setf hashtag-text) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: hashtag-text (HASHTAG hashtag)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf hashtag-text) NEW-VALUE (HASHTAG hashtag)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: list-type-description OBJECT
-
- Generic Function: (setf list-type-description) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-description (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-description) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-full-name OBJECT
-
- Generic Function: (setf list-type-full-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-full-name (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-full-name) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-id OBJECT
-
- Generic Function: (setf list-type-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-id (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-id) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-id-str OBJECT
-
- Generic Function: (setf list-type-id-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-id-str (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-id-str) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-member-count OBJECT
-
- Generic Function: (setf list-type-member-count) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-member-count (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-member-count) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-mode OBJECT
-
- Generic Function: (setf list-type-mode) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-mode (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-mode) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-slug OBJECT
-
- Generic Function: (setf list-type-slug) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-slug (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-slug) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-uri OBJECT
-
- Generic Function: (setf list-type-uri) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-uri (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-uri) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
- Generic Function: list-type-user OBJECT
-
- Generic Function: (setf list-type-user) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: list-type-user (LIST-TYPE list-type)
-
automatically generated reader method
- Source
twitter-lists.lisp (file)
- Method: (setf list-type-user) NEW-VALUE (LIST-TYPE list-type)
-
automatically generated writer method
- Source
twitter-lists.lisp (file)
-
- Package
twitter
- Source
elements.lisp (file)
- Methods
-
- Source
twitter-cache.lisp (file)
-
- Source
twitter-cache.lisp (file)
-
- Source
twitter-cache.lisp (file)
-
- Source
twitter-db.lisp (file)
- Generic Function: media-entity-display-url OBJECT
-
- Generic Function: (setf media-entity-display-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-display-url (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-display-url) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-expanded-url OBJECT
-
- Generic Function: (setf media-entity-expanded-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-expanded-url (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-expanded-url) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-id OBJECT
-
- Generic Function: (setf media-entity-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-id (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-id) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-id-str OBJECT
-
- Generic Function: (setf media-entity-id-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-id-str (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-id-str) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-indices OBJECT
-
- Generic Function: (setf media-entity-indices) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-indices (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-indices) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-media-url OBJECT
-
- Generic Function: (setf media-entity-media-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-media-url (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-media-url) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-media-url-https OBJECT
-
- Generic Function: (setf media-entity-media-url-https) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-media-url-https (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-media-url-https) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-sizes OBJECT
-
- Generic Function: (setf media-entity-sizes) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-sizes (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-sizes) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-type OBJECT
-
- Generic Function: (setf media-entity-type) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-type (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-type) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-entity-url OBJECT
-
- Generic Function: (setf media-entity-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-entity-url (MEDIA-ENTITY media-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-entity-url) NEW-VALUE (MEDIA-ENTITY media-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-size-h OBJECT
-
- Generic Function: (setf media-size-h) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-size-h (MEDIA-SIZE media-size)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-size-h) NEW-VALUE (MEDIA-SIZE media-size)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-size-id OBJECT
-
- Generic Function: (setf media-size-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-size-id (MEDIA-SIZE media-size)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-size-id) NEW-VALUE (MEDIA-SIZE media-size)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-size-resize OBJECT
-
- Generic Function: (setf media-size-resize) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-size-resize (MEDIA-SIZE media-size)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-size-resize) NEW-VALUE (MEDIA-SIZE media-size)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: media-size-w OBJECT
-
- Generic Function: (setf media-size-w) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: media-size-w (MEDIA-SIZE media-size)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf media-size-w) NEW-VALUE (MEDIA-SIZE media-size)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: place-country OBJECT
-
- Generic Function: (setf place-country) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: place-country (PLACE place)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf place-country) NEW-VALUE (PLACE place)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: place-name OBJECT
-
- Generic Function: (setf place-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: place-name (OBJ (eql nil))
-
- Source
twitter-trends.lisp (file)
- Method: place-name (PLACE place)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf place-name) NEW-VALUE (PLACE place)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: place-placetype OBJECT
-
- Generic Function: (setf place-placetype) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: place-placetype (PLACE place)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf place-placetype) NEW-VALUE (PLACE place)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: place-type-code OBJECT
-
- Generic Function: (setf place-type-code) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: place-type-code (PLACE-TYPE place-type)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf place-type-code) NEW-VALUE (PLACE-TYPE place-type)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: place-type-name OBJECT
-
- Generic Function: (setf place-type-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: place-type-name (NAME (eql nil))
-
- Source
twitter-trends.lisp (file)
- Method: place-type-name (PLACE-TYPE place-type)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf place-type-name) NEW-VALUE (PLACE-TYPE place-type)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: place-woeid OBJECT
-
- Generic Function: (setf place-woeid) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: place-woeid (PLACE place)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf place-woeid) NEW-VALUE (PLACE place)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
-
- Package
twitter
- Source
elements.lisp (file)
- Methods
-
- Source
twitter-db.lisp (file)
- Generic Function: reply-to TWEET TEXT &key TINY-URL-P LAT LONG PLACE-ID DISPLAY-COORDINATES TRIM-USER
-
- Package
twitter
- Methods
- Method: reply-to (NAME string) (TEXT string) &key TINY-URL-P LAT LONG PLACE-ID DISPLAY-COORDINATES TRIM-USER
-
- Source
twitter-tweet-status.lisp (file)
- Method: reply-to (TWEET tweet) (TEXT string) &key TINY-URL-P LAT LONG PLACE-ID DISPLAY-COORDINATES TRIM-USER
-
- Source
twitter-tweet-status.lisp (file)
- Generic Function: return-code CONDITION
-
- Package
twitter
- Methods
- Method: return-code (CONDITION twitter-api-condition)
-
- Source
conditions.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-tweet-status.lisp (file)
-
- Source
twitter-tweet-status.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-tweet-status.lisp (file)
-
- Source
twitter-tweet-status.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-tweet-status.lisp (file)
- Generic Function: saved-search-created-at OBJECT
-
- Generic Function: (setf saved-search-created-at) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: saved-search-created-at (SAVED-SEARCH saved-search)
-
automatically generated reader method
- Source
twitter-saved-searches.lisp (file)
- Method: (setf saved-search-created-at) NEW-VALUE (SAVED-SEARCH saved-search)
-
automatically generated writer method
- Source
twitter-saved-searches.lisp (file)
- Generic Function: saved-search-id OBJECT
-
- Generic Function: (setf saved-search-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: saved-search-id (SAVED-SEARCH saved-search)
-
automatically generated reader method
- Source
twitter-saved-searches.lisp (file)
- Method: (setf saved-search-id) NEW-VALUE (SAVED-SEARCH saved-search)
-
automatically generated writer method
- Source
twitter-saved-searches.lisp (file)
- Generic Function: saved-search-id-str OBJECT
-
- Generic Function: (setf saved-search-id-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: saved-search-id-str (SAVED-SEARCH saved-search)
-
automatically generated reader method
- Source
twitter-saved-searches.lisp (file)
- Method: (setf saved-search-id-str) NEW-VALUE (SAVED-SEARCH saved-search)
-
automatically generated writer method
- Source
twitter-saved-searches.lisp (file)
- Generic Function: saved-search-name OBJECT
-
- Generic Function: (setf saved-search-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: saved-search-name (SAVED-SEARCH saved-search)
-
automatically generated reader method
- Source
twitter-saved-searches.lisp (file)
- Method: (setf saved-search-name) NEW-VALUE (SAVED-SEARCH saved-search)
-
automatically generated writer method
- Source
twitter-saved-searches.lisp (file)
- Generic Function: saved-search-position OBJECT
-
- Generic Function: (setf saved-search-position) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: saved-search-position (SAVED-SEARCH saved-search)
-
automatically generated reader method
- Source
twitter-saved-searches.lisp (file)
- Method: (setf saved-search-position) NEW-VALUE (SAVED-SEARCH saved-search)
-
automatically generated writer method
- Source
twitter-saved-searches.lisp (file)
- Generic Function: saved-search-query OBJECT
-
- Generic Function: (setf saved-search-query) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: saved-search-query (SAVED-SEARCH saved-search)
-
automatically generated reader method
- Source
twitter-saved-searches.lisp (file)
- Method: (setf saved-search-query) NEW-VALUE (SAVED-SEARCH saved-search)
-
automatically generated writer method
- Source
twitter-saved-searches.lisp (file)
- Generic Function: search-metadata-completed-in OBJECT
-
- Generic Function: (setf search-metadata-completed-in) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-completed-in (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-completed-in) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-count OBJECT
-
- Generic Function: (setf search-metadata-count) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-count (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-count) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-max-id OBJECT
-
- Generic Function: (setf search-metadata-max-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-max-id (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-max-id) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-next-results OBJECT
-
- Generic Function: (setf search-metadata-next-results) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-next-results (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-next-results) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-query OBJECT
-
- Generic Function: (setf search-metadata-query) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-query (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-query) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-refresh-url OBJECT
-
- Generic Function: (setf search-metadata-refresh-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-refresh-url (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-refresh-url) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-since-id OBJECT
-
- Generic Function: (setf search-metadata-since-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-since-id (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-since-id) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-metadata-since-id-str OBJECT
-
- Generic Function: (setf search-metadata-since-id-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-metadata-since-id-str (SEARCH-METADATA search-metadata)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-metadata-since-id-str) NEW-VALUE (SEARCH-METADATA search-metadata)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-result-search-metadata OBJECT
-
- Generic Function: (setf search-result-search-metadata) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-result-search-metadata (SEARCH-RESULT search-result)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-result-search-metadata) NEW-VALUE (SEARCH-RESULT search-result)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: search-result-statuses OBJECT
-
- Generic Function: (setf search-result-statuses) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: search-result-statuses (SEARCH-RESULT search-result)
-
automatically generated reader method
- Source
twitter-search.lisp (file)
- Method: (setf search-result-statuses) NEW-VALUE (SEARCH-RESULT search-result)
-
automatically generated writer method
- Source
twitter-search.lisp (file)
- Generic Function: send-message SCREEN-NAME MESSAGE
-
- Package
twitter
- Methods
- Method: send-message (SCREEN-NAME string) (MESSAGE string)
-
- Source
twitter-messages.lisp (file)
- Generic Function: show OBJ &optional S
-
- Package
twitter
- Source
twitter-show.lisp (file)
- Methods
- Method: show (MEDIA-ENTITY media-entity) &optional S
-
- Method: show (USER-MENTION user-mention) &optional S
-
- Method: show (HASHTAG hashtag) &optional S
-
- Method: show (URL-ENTITY url-entity) &optional S
-
- Method: show (CURSOR-USER cursor-user) &optional S
-
- Method: show (CURSOR-USER-LISTS cursor-user-lists) &optional S
-
- Method: show (GEO-RESULT geo-result) &optional S
-
- Method: show (GEO-PLACES geo-places) &optional S
-
- Method: show (LIST-TYPE list-type) &optional S
-
- Method: show (PLACE place) &optional S
-
- Method: show (GEO-PLACE geo-place) &optional S
-
- Method: show (TWITTER-USER twitter-user) &optional S
-
- Method: show (SEARCH-RESULT search-result) &optional S
-
- Method: show (SEARCH-METADATA search-metadata) &optional S
-
- Method: show (TREND trend) &optional S
-
- Method: show (TREND-LIST trend-list) &optional S
-
- Method: show (TWITTER-MESSAGE twitter-message) &optional S
-
- Method: show (TWEET tweet) &optional S
-
- Method: show (OBJ hash-table) &optional S
-
- Method: show (OBJ cons) &optional S
-
- Method: show OBJ &optional S
-
- Generic Function: social-graph-cursor-id-id OBJECT
-
- Generic Function: (setf social-graph-cursor-id-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-id (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-id) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: social-graph-cursor-id-ids OBJECT
-
- Generic Function: (setf social-graph-cursor-id-ids) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-ids (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-ids) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: social-graph-cursor-id-next-cursor OBJECT
-
- Generic Function: (setf social-graph-cursor-id-next-cursor) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-next-cursor (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-next-cursor) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: social-graph-cursor-id-next-cursor-str OBJECT
-
- Generic Function: (setf social-graph-cursor-id-next-cursor-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-next-cursor-str (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-next-cursor-str) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: social-graph-cursor-id-previous-cursor OBJECT
-
- Generic Function: (setf social-graph-cursor-id-previous-cursor) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-previous-cursor (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-previous-cursor) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: social-graph-cursor-id-previous-cursor-str OBJECT
-
- Generic Function: (setf social-graph-cursor-id-previous-cursor-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-previous-cursor-str (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-previous-cursor-str) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: social-graph-cursor-id-screen-name OBJECT
-
- Generic Function: (setf social-graph-cursor-id-screen-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: social-graph-cursor-id-screen-name (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated reader method
- Source
twitter-social-graph.lisp (file)
- Method: (setf social-graph-cursor-id-screen-name) NEW-VALUE (SOCIAL-GRAPH-CURSOR-ID social-graph-cursor-id)
-
automatically generated writer method
- Source
twitter-social-graph.lisp (file)
- Generic Function: trend-list-as-of OBJECT
-
- Generic Function: (setf trend-list-as-of) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-list-as-of (TREND-LIST trend-list)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-list-as-of) NEW-VALUE (TREND-LIST trend-list)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-list-created-at OBJECT
-
- Generic Function: (setf trend-list-created-at) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-list-created-at (TREND-LIST trend-list)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-list-created-at) NEW-VALUE (TREND-LIST trend-list)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-list-id OBJECT
-
- Generic Function: (setf trend-list-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-list-id (TREND-LIST trend-list)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-list-id) NEW-VALUE (TREND-LIST trend-list)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-list-locations OBJECT
-
- Generic Function: (setf trend-list-locations) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-list-locations (TREND-LIST trend-list)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-list-locations) NEW-VALUE (TREND-LIST trend-list)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-list-trends OBJECT
-
- Generic Function: (setf trend-list-trends) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-list-trends (TREND-LIST trend-list)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-list-trends) NEW-VALUE (TREND-LIST trend-list)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-name OBJECT
-
- Generic Function: (setf trend-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-name (TREND trend)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-name) NEW-VALUE (TREND trend)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-promoted-content OBJECT
-
- Generic Function: (setf trend-promoted-content) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-promoted-content (TREND trend)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-promoted-content) NEW-VALUE (TREND trend)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-query OBJECT
-
- Generic Function: (setf trend-query) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-query (TREND trend)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-query) NEW-VALUE (TREND trend)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
- Generic Function: trend-url OBJECT
-
- Generic Function: (setf trend-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: trend-url (TREND trend)
-
automatically generated reader method
- Source
twitter-trends.lisp (file)
- Method: (setf trend-url) NEW-VALUE (TREND trend)
-
automatically generated writer method
- Source
twitter-trends.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-tweet-status.lisp (file)
-
automatically generated writer method
- Source
twitter-tweet-status.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-tweet-status.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-messages.lisp (file)
-
automatically generated writer method
- Source
twitter-messages.lisp (file)
-
- Package
twitter
- Methods
-
- Source
twitter-op.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
-
-
- Package
twitter
- Methods
-
automatically generated reader method
- Source
twitter-user.lisp (file)
-
automatically generated writer method
- Source
twitter-user.lisp (file)
- Generic Function: unique-id TWITTER-OBJ
-
- Package
twitter
- Source
twitter-cache.lisp (file)
- Methods
- Method: unique-id TWITTER-OBJ
-
- Method: unique-id (REF social-graph-cursor-user)
-
- Source
twitter-social-graph.lisp (file)
- Method: unique-id (REF social-graph-cursor-id)
-
- Source
twitter-social-graph.lisp (file)
- Method: unique-id (TREND-LIST trend-list)
-
- Source
twitter-trends.lisp (file)
- Method: unique-id (TREND trend)
-
- Source
twitter-trends.lisp (file)
- Generic Function: url-entity-display-url OBJECT
-
- Generic Function: (setf url-entity-display-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: url-entity-display-url (URL-ENTITY url-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf url-entity-display-url) NEW-VALUE (URL-ENTITY url-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: url-entity-expanded-url OBJECT
-
- Generic Function: (setf url-entity-expanded-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: url-entity-expanded-url (URL-ENTITY url-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf url-entity-expanded-url) NEW-VALUE (URL-ENTITY url-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: url-entity-id OBJECT
-
- Generic Function: (setf url-entity-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: url-entity-id (URL-ENTITY url-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf url-entity-id) NEW-VALUE (URL-ENTITY url-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: url-entity-indices OBJECT
-
- Generic Function: (setf url-entity-indices) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: url-entity-indices (URL-ENTITY url-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf url-entity-indices) NEW-VALUE (URL-ENTITY url-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: url-entity-url OBJECT
-
- Generic Function: (setf url-entity-url) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: url-entity-url (URL-ENTITY url-entity)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf url-entity-url) NEW-VALUE (URL-ENTITY url-entity)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: user-mention-id OBJECT
-
- Generic Function: (setf user-mention-id) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: user-mention-id (USER-MENTION user-mention)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf user-mention-id) NEW-VALUE (USER-MENTION user-mention)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: user-mention-id-str OBJECT
-
- Generic Function: (setf user-mention-id-str) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: user-mention-id-str (USER-MENTION user-mention)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf user-mention-id-str) NEW-VALUE (USER-MENTION user-mention)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: user-mention-name OBJECT
-
- Generic Function: (setf user-mention-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: user-mention-name (USER-MENTION user-mention)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf user-mention-name) NEW-VALUE (USER-MENTION user-mention)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
- Generic Function: user-mention-screen-name OBJECT
-
- Generic Function: (setf user-mention-screen-name) NEW-VALUE OBJECT
-
- Package
twitter
- Methods
- Method: user-mention-screen-name (USER-MENTION user-mention)
-
automatically generated reader method
- Source
twitter-entity.lisp (file)
- Method: (setf user-mention-screen-name) NEW-VALUE (USER-MENTION user-mention)
-
automatically generated writer method
- Source
twitter-entity.lisp (file)
6.1.5 Conditions
-
- Package
twitter
- Source
conditions.lisp (file)
- Direct superclasses
error (condition)
- Direct methods
-
- Direct slots
- Slot: return-code
-
- Initargs
:code
- Readers
return-code (generic function)
- Slot: short
-
- Initargs
:short
- Readers
short-message (generic function)
- Slot: long
-
- Initargs
:long
- Readers
long-message (generic function)
- Slot: request
-
- Initargs
:request
- Readers
request-message (generic function)
- Slot: uri
-
- Initargs
:uri
- Readers
request-uri (generic function)
6.1.6 Classes
- Class: end-session ()
-
- Package
twitter
- Source
twitter-account.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: id
-
- Initargs
:id
- Readers
end-session-id (generic function)
- Writers
(setf end-session-id) (generic function)
- Slot: request
-
- Initargs
:request
- Readers
end-session-request (generic function)
- Writers
(setf end-session-request) (generic function)
- Slot: error
-
- Initargs
:error
- Readers
end-session-error (generic function)
- Writers
(setf end-session-error) (generic function)
- Class: saved-search ()
-
- Package
twitter
- Source
twitter-saved-searches.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: id
-
- Initargs
:id
- Readers
saved-search-id (generic function)
- Writers
(setf saved-search-id) (generic function)
- Slot: query
-
- Initargs
:query
- Readers
saved-search-query (generic function)
- Writers
(setf saved-search-query) (generic function)
- Slot: created-at
-
- Initargs
:created-at
- Readers
saved-search-created-at (generic function)
- Writers
(setf saved-search-created-at) (generic function)
- Slot: id-str
-
- Initargs
:id-str
- Readers
saved-search-id-str (generic function)
- Writers
(setf saved-search-id-str) (generic function)
- Slot: name
-
- Initargs
:name
- Readers
saved-search-name (generic function)
- Writers
(setf saved-search-name) (generic function)
- Slot: position
-
- Initargs
:position
- Readers
saved-search-position (generic function)
- Writers
(setf saved-search-position) (generic function)
- Class: search-metadata ()
-
- Package
twitter
- Source
twitter-search.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: completed-in
-
- Initargs
:completed-in
- Readers
search-metadata-completed-in (generic function)
- Writers
(setf search-metadata-completed-in) (generic function)
- Slot: max-id
-
- Initargs
:max-id
- Readers
search-metadata-max-id (generic function)
- Writers
(setf search-metadata-max-id) (generic function)
- Slot: max-id-str
-
- Initargs
:max-id-str
- Readers