• Complain

Weitz - Common Lisp Recipes: a Problem-Solution Approach

Here you can read online Weitz - Common Lisp Recipes: a Problem-Solution Approach full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Berkeley;CA, year: 2016, publisher: Apress, genre: Romance novel. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Weitz Common Lisp Recipes: a Problem-Solution Approach
  • Book:
    Common Lisp Recipes: a Problem-Solution Approach
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2016
  • City:
    Berkeley;CA
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Common Lisp Recipes: a Problem-Solution Approach: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Common Lisp Recipes: a Problem-Solution Approach" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Find solutions to problems and answers to questions you are likely to encounter when writing real-world applications in Common Lisp. This book covers areas as diverse as web programming, databases, graphical user interfaces, integration with other programming languages, multi-threading, and mobile devices as well as debugging techniques and optimization, to name just a few. Written by an author who has used Common Lisp in many successful commercial projects over more than a decade, Common Lisp Recipes is also the first Common Lisp book to tackle such advanced topics as environment access, logical pathnames, Gray streams, delivery of executables, pretty printing, setf expansions, or changing the syntax of Common Lisp. The book is organized around specific problems or questions each followed by ready-to-use example solutions and clear explanations of the concepts involved, plus pointers to alternatives and more information. Each recipe can be read independently of the others and thus the ...

Weitz: author's other books


Who wrote Common Lisp Recipes: a Problem-Solution Approach? Find out the surname, the name of the author of the book and a list of all author's works by series.

Common Lisp Recipes: a Problem-Solution Approach — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Common Lisp Recipes: a Problem-Solution Approach" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Edmund Weitz 2016
Edmund Weitz Common Lisp Recipes 10.1007/978-1-4842-1176-2_1
Chapter 1: Symbols and Packages
Edmund Weitz 1
(1)
Hamburg, Germany
Symbols are one of the most important building blocks of Common Lisp . Many other programming languages either dont have symbols, or if they have them, they are just one of many data types. But in Lisp, symbols play a central role because they are used to name things like variables and functions, are indispensable in macros, but are also objects in their own right. Thus, they deserve some attention.
Although symbols are superficially easy to get, they are complicated compound objects under the hood, so if you want to use them in advanced ways, a deeper understanding of them and their interaction with packages is necessary. Thats what main parts of this chapter are about.
Theres one thing you definitely should not use symbols for: dont use them when strings (see ), thats not what they are for. You will occasionally find older code where symbols are used for everything ; but that is most likely because it was written for a Lisp dialect that didnt have strings or because it was written by someone who didnt know better.
Also, code that creates new symbols automatically and constructs their names by gluing things together smells fishy in my opinion. You should at least think twice before doing that.
Note that for didactical reasons the recipes in this chapter generally use the functional interface to the package system. In practice, you will almost always use DEFPACKAGE in your code, as for example on pages 27 and 29.
1-1. Understanding the Role of Packages and the Symbol Nomenclature
Problem
Symbols can be accessible , inherited , internal , present , and so on. They have a home package but can live in several different packages at the same time or in none at all. This can all be pretty confusing at first, but it is vital to develop a good understanding of how packages and symbols interact in order to get the finer points.
Solution
Well work through the various notions and interdependencies using an example. Lets create three new packages using these forms and then dissect what we get:
How It Works We now have a situation that can be depicted graphically like so - photo 1
How It Works
We now have a situation that can be depicted graphically, like so:
Each of the four large boxes above is a package the smaller rectangles denote - photo 2
Each of the four large boxes above is a package; the smaller rectangles denote symbols. We see the three packages, P1 through P3 , which we explicitly created, and the CL (or COMMON-LISP ) package, which is already there when we start our Lisp image and of whose many symbols we only show a sample of four.
A package is a container of symbols (thats why they are drawn as boxes holding the symbol rectangles); and it is probably fair to say that the main job of packages is to help us find symbols and to organize them into groups. This can also be put differently: packages can help us name and find symbols, but symbols can have an existence on their own; that is, without packages. (As well see in Recipes .)
Symbols are usually created automatically (by the Lisp reader; see ) because it creates a new internal symbol of the package.
Of course, most of the time symbols are not created because, when it reads them, the Lisp system firsts checks if they are already there; that is, whether they are accessible using the name and (implicit or explicit) package prefix you provided. So, in the following situation (assuming you just started your Lisp image)
when your Lisp reads foo it is as if it had read cl-userfoo because as the - photo 3
when your Lisp reads foo it is as if it had read cl-user::foo because (as the prompt shows) the CL-USER package is the current package. Because no symbol with the name "FOO" is accessible via the package CL-USER , a new symbol (with that name and in that package) is created (viz. interned into the package).
When your Lisp now reads foo again , a symbol described by this sequence of characters is available (the one that was just created) and is returned.
In our example code from page 2 we didnt create any symbols this way but we created them implicitly or explicitly through the DEFPACKAGE forms. Lets see what we got this way:
  • Symbols are either present in a package or not. In our picture, the symbols present in a package are those that are contained within the surrounding box.
  • Symbols become present in a package either if a new symbol is interned (see above) or if an existing symbol is imported .
    The DEFPACKAGE form for P3 , for example, explicitly interned a symbol named ALPHA and explicitly imported the symbol named DELTA from the P2 package.
  • When a symbol is imported into a package, the effect is that the same symbol is now present in (at least) two different packages. In the picture, we used dashed lines to show identity; that is, symbols connected with dashed lines are actually the same symbol and symbols not connected are really different symbols.
  • Once a symbol is present in a package, it can only be removed using the function UNINTERN (see Recipe ).
  • If a symbol is present in a package, it can be exported from that package. This means that it can now be accessed using only one colon between the packages and the symbols name. Exported symbols are shown with a gray background in our picture.
    For example, the package P1 exports the symbol CHARLIE , but not the symbol ALPHA . We didnt explicitly intern CHARLIE , but because we instructed the system to export it, it had to be present and was thus created (and interned) automatically.
  • Exported symbols are called external and the other ones are called internal .
  • A package can also have inherited symbols. This happens if a package uses another package. All external symbols of the used package become inherited symbols of the package using this package. Inherited symbols are not shown directly in our picture but rather by means of the arrows on the right that show which packages use which other packages.
    For example, package P3 uses package P2 and thus P2:ECHO is an inherited symbol of P3 . Likewise, P3 also uses CL and thus all of the 978 exported symbols of CL (see footnote on page 19) become inherited symbols of P3 . You can thus refer to P2:ECHO as P3::ECHO and to CL:ABS as P3::ABS .
  • Inheritance is not transitive. The fact that P3 uses P2 and P2 in turn uses P1 does not mean that the symbol P1:CHARLIE is an inherited symbol of P3 .
    P3 has its own symbol named CHARLIE , which was implicitly created because it was exported, but this symbol is different from P1:CHARLIE .
  • A symbol is accessible in a package (in other words, it can be found through that package) if it is either present or inherited in that package.
    As accessibility means that a symbol can be found in a package by name, it implies that no two different accessible symbols can have the same name. This would be called a name conflict . To provoke such a conflict, try something like this:
    Some parts of our example might deserve closer inspection What about the - photo 4
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Common Lisp Recipes: a Problem-Solution Approach»

Look at similar books to Common Lisp Recipes: a Problem-Solution Approach. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Common Lisp Recipes: a Problem-Solution Approach»

Discussion, reviews of the book Common Lisp Recipes: a Problem-Solution Approach and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.