SlideShare une entreprise Scribd logo
1  sur  23
Symbols and Packages in Lisp
A lisp symbol is a data object that has three user-visible components: The property list is the list that effectively provides each symbol with many modifiable named components. The print name must be the  string, which is the sequence of characters used to identify the symbol. The package cell must refer to package object. A package is a data structure used to locate a symbol once given the symbols name. A symbol is uniquely identified by its name only when considered relative to a package.
overview The property List The Print name Creating symbols Packages Translating strings to Symbols Export and import symbols Name conflicts Built-in packages
The property list A property list contains two or more entries, with each entry associated with the key called the indicator. A property list is very much similar to an association list in its purpose, but the difference is that a property list is an object with unique identity. A property list is implemented as a memory cell containing a list with even number(possibly zero) of elements.  Each pair of elements in the list constitutes an entry: the first item is the indicator, the second item is the value. When the symbol is created its property list is initially empty, properties are created by using get within a set form.
get symbol indicator1 &optional default Get searches the property list of the symbol for an indicator eq to indicator1. if one  is found, the corresponding value is returned, else default is returned. Suppose the property list of foo is ( bar t baz 3 hunoz “huh?”) Then ex: (get ‘foo ‘baz)3                      (get ‘foo ‘hunoz)”Huh?”                      (get ‘foo ‘Zoo) nil
remprop symbol indicator1 This removes the symbol from the property with an indicator eq to indicator1. Suppose if property foo was (color blue height 6.3) After using (remprop ‘foo ‘height) the property becomes (color blue) Returns the list that contains the property pairs of the symbol, the contents of the property lists are extracted and returned. symbol-plist symbol
getf place indicator1 &optional default getf searches for the property list stored in place for an indicator eq to indicator1, if found returns the corresponding value, else returns the default or nil. remf removes from the property list stored in the place the property with an indicator eq to indicator1 . The property indicator and the corresponding value are removed by destructively splicing the property list. remf place indicator1
get-properties place indicator-list get-properties searches the property list stored in place for any of the indicators in the indicator-list untill it finds the first property in the property list. Get-properties returns three values: ,[object Object]
The third is the tail of the property whose tail is the indicator.,[object Object]
Creating Symbols Symbols are used in two different ways: An interned symbol is one that is indexed by its print name in its catalog called a package. An uninterned symbol is one that is used simply as a data object with no special cataloguing. An uninterned symbol is printed with #: followed by its print name. make-symbol print-name  creates a new uninterned symbol whose print name is the string print-name.
copy-symbol sym &optional copy-props returns a new uninterented symbol with the same name as of the sym. If copy-props is non-nil, then the initial value and function definition of the new symbol will be the same as those of the sym, and the property list of the new symbol will be a copy of sym’s. gensym &optional  x gensym invents a print name and creates a new symbol with that print name. it returns new uninterented symbol. The invented new print name consists of a prefix( which defaults to G) , followed by decimal representation of a number. The number is increased by 1 every time gensym is called.
gentamp &optional prefix package gentemp like gensym, creates and returns new symbol. The only difference is gentemp interns the symbol in the package. Symbol-package sym  returns the contents of the package cell of that symbol. This will be a package object or nil. Keywordp object returns true if the argument is a symbol and that symbol is a keyword.
Packages A package is a data structure that is used for mapping the print names (strings) to symbols. The string-to symbol mappings available in the given package are divided into two classes:   ,[object Object]
 internal( normally hidden from other packages).A symbol is said to be interned in a package if it is accessible in that package and also is owned.
Consistency rules In dealing with package system, it is useful to follow the consistency rules: ,[object Object]
Print-read consistency: An interned symbol always as a sequence of characters that, when read back in, yields the same (eq) symbol.
Print-print consistancy:if two interned symbols are not eq, then their printed representations will be different sequence of characters.,[object Object]
Translating strings to symbols Whatever packet object is currently the value of *package* is referred to as current-package. When the lisp reader has obtained a string of characters thought to name a symbol, that name is looked up in the current package. If the name is found, the corresponding  symbol is returned, if the name is not found, a new  symbol is created for it and is placed in the current package as an internal symbol. External symbol in some other package is referred  through the qualified name, consisting of the package name, then a colon, then the name of the symbol. Ex:  editor: buffer refers to external symbol buffer accessible in the package named editor.
The following four symbol qualifying syntaxes are used: foo: bar look up bar among the external symbols of the package named foo, printed when the symbol bar is external in its home package foo and is not accessible in the current package. foo::bar interns bar as if foo is the current page,  printed when symbol bar is internal in its home page foo, and is not accessible in the current page. :bar interns bar as the external symbol in the keyword package and makes it evaluate to itself. Printed if the home page of the symbol bar is keyword. #:bar creates a new uninterned symbol named BAR. Printed when the symbol BAR is uninterented(has no home package )
Exporting and Importing Symbols Symbols from one package may be exported to imported from other packages by the use of functions export and import respectively. (import ‘editor:buffer) takes the external symbol named buffer in the editor package and adds it to the current package as an internal symbol. A symbol is said to be shadowed by another symbol in some package if the first symbol would be accessible by inheritance if not for the presence of the second symbol.
To import a symbol without the possibility of getting the error because of shadowing use the function shadowing-import. Use package causes a package to inherit all of the external symbols from some other package. Unlike import, use-package does not cause any of the new symbols to be present in the current package, but makes them accessible by inheritance.
The function export takes the symbol that is accessible in some specified package, and makes it an external symbol of that package. If the symbol is directly present as an internal symbol, the it is imply changed to external status. If the symbol is accessible via use-package, the symbol is first imported to the package and then exported. If the same name is being used more than once name-conflicts may occur, so care has to be taken to avoid any such name conflicts.
Built-in Packages Common lisp built-in packages: Lisp contains the primitives of the common lisp system. Its external symbols include all of the user defined functions such as car, car and *package*. user package is the current package at the time a Common Lisp system starts up.  common-lisp package contains the primitives of the ANSI commomLisp system. common-lisp-user is by default the current package at the time, an ANSI common Lisp system starts up.

Contenu connexe

Tendances

The Java Script Programming Language
The  Java Script  Programming  LanguageThe  Java Script  Programming  Language
The Java Script Programming Language
zone
 

Tendances (19)

Python revision tour II
Python revision tour IIPython revision tour II
Python revision tour II
 
Learn Python The Hard Way Presentation
Learn Python The Hard Way PresentationLearn Python The Hard Way Presentation
Learn Python The Hard Way Presentation
 
Python-01| Fundamentals
Python-01| FundamentalsPython-01| Fundamentals
Python-01| Fundamentals
 
Introduction to Python Language and Data Types
Introduction to Python Language and Data TypesIntroduction to Python Language and Data Types
Introduction to Python Language and Data Types
 
Python Programming Basics for begginners
Python Programming Basics for begginnersPython Programming Basics for begginners
Python Programming Basics for begginners
 
Javascript
JavascriptJavascript
Javascript
 
Subroutines in perl
Subroutines in perlSubroutines in perl
Subroutines in perl
 
Python cheat-sheet
Python cheat-sheetPython cheat-sheet
Python cheat-sheet
 
Python second ppt
Python second pptPython second ppt
Python second ppt
 
Python language data types
Python language data typesPython language data types
Python language data types
 
Introduction To Programming with Python-3
Introduction To Programming with Python-3Introduction To Programming with Python-3
Introduction To Programming with Python-3
 
Perl_Part1
Perl_Part1Perl_Part1
Perl_Part1
 
Python Session - 4
Python Session - 4Python Session - 4
Python Session - 4
 
The Java Script Programming Language
The  Java Script  Programming  LanguageThe  Java Script  Programming  Language
The Java Script Programming Language
 
The JavaScript Programming Language
The JavaScript Programming LanguageThe JavaScript Programming Language
The JavaScript Programming Language
 
Lexical analyzer
Lexical analyzerLexical analyzer
Lexical analyzer
 
Introduction to Python
Introduction to Python Introduction to Python
Introduction to Python
 
Operator precedance parsing
Operator precedance parsingOperator precedance parsing
Operator precedance parsing
 
Python-The programming Language
Python-The programming LanguagePython-The programming Language
Python-The programming Language
 

En vedette

Plastic packaging market in india 2014 -Sample
Plastic packaging market in india 2014 -SamplePlastic packaging market in india 2014 -Sample
Plastic packaging market in india 2014 -Sample
Netscribes, Inc.
 
PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.
PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.
PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.
Akshay Joshi
 
Packaging
PackagingPackaging
Packaging
shankh
 

En vedette (11)

The packaging industry in india
The packaging industry in indiaThe packaging industry in india
The packaging industry in india
 
Plastic packaging market in india 2014 -Sample
Plastic packaging market in india 2014 -SamplePlastic packaging market in india 2014 -Sample
Plastic packaging market in india 2014 -Sample
 
PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.
PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.
PACKAGING OF TABLETS: TYPES, MATERIALS AND QC.
 
strip packaging
strip packagingstrip packaging
strip packaging
 
Packaging
PackagingPackaging
Packaging
 
Flexible packaging materials 2013
Flexible packaging materials 2013Flexible packaging materials 2013
Flexible packaging materials 2013
 
The Best Package Designs in the World!
The Best Package Designs in the World!The Best Package Designs in the World!
The Best Package Designs in the World!
 
Packaging ppt
Packaging pptPackaging ppt
Packaging ppt
 
Blister packing
Blister packingBlister packing
Blister packing
 
Packaging & labeling in food industries
Packaging & labeling in food industriesPackaging & labeling in food industries
Packaging & labeling in food industries
 
Marketing - Packaging Project CBSE
Marketing - Packaging Project CBSEMarketing - Packaging Project CBSE
Marketing - Packaging Project CBSE
 

Similaire à LISP: Symbols and packages in lisp

AssignmentModify the Python program by adding the create_dictiona.pdf
AssignmentModify the Python program by adding the create_dictiona.pdfAssignmentModify the Python program by adding the create_dictiona.pdf
AssignmentModify the Python program by adding the create_dictiona.pdf
tsekar2004
 
Hello guys please make sure program runs well USING C anyth.pdf
Hello guys please make sure program runs well USING C anyth.pdfHello guys please make sure program runs well USING C anyth.pdf
Hello guys please make sure program runs well USING C anyth.pdf
actioncbe1
 
Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
ssuser8e50d8
 

Similaire à LISP: Symbols and packages in lisp (20)

LISP: Input And Output
LISP: Input And OutputLISP: Input And Output
LISP: Input And Output
 
LISP: Input And Output
LISP: Input And OutputLISP: Input And Output
LISP: Input And Output
 
AssignmentModify the Python program by adding the create_dictiona.pdf
AssignmentModify the Python program by adding the create_dictiona.pdfAssignmentModify the Python program by adding the create_dictiona.pdf
AssignmentModify the Python program by adding the create_dictiona.pdf
 
Chapter Functions for grade 12 computer Science
Chapter Functions for grade 12 computer ScienceChapter Functions for grade 12 computer Science
Chapter Functions for grade 12 computer Science
 
parser
parserparser
parser
 
Vizwik Coding Manual
Vizwik Coding ManualVizwik Coding Manual
Vizwik Coding Manual
 
AI UNIT-4 Final (2).pptx
AI UNIT-4 Final (2).pptxAI UNIT-4 Final (2).pptx
AI UNIT-4 Final (2).pptx
 
Functions2.pdf
Functions2.pdfFunctions2.pdf
Functions2.pdf
 
Python programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsPython programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operations
 
Compiler Design QA
Compiler Design QACompiler Design QA
Compiler Design QA
 
Beginners python cheat sheet - Basic knowledge
Beginners python cheat sheet - Basic knowledge Beginners python cheat sheet - Basic knowledge
Beginners python cheat sheet - Basic knowledge
 
1. python
1. python1. python
1. python
 
Python cheatsheet for beginners
Python cheatsheet for beginnersPython cheatsheet for beginners
Python cheatsheet for beginners
 
Hello guys please make sure program runs well USING C anyth.pdf
Hello guys please make sure program runs well USING C anyth.pdfHello guys please make sure program runs well USING C anyth.pdf
Hello guys please make sure program runs well USING C anyth.pdf
 
Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4
 
AI Programming language (LISP)
AI Programming language (LISP)AI Programming language (LISP)
AI Programming language (LISP)
 
Functions in Python Syntax and working .
Functions in Python Syntax and working .Functions in Python Syntax and working .
Functions in Python Syntax and working .
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
 
functions- best.pdf
functions- best.pdffunctions- best.pdf
functions- best.pdf
 
2. Python Cheat Sheet.pdf
2. Python Cheat Sheet.pdf2. Python Cheat Sheet.pdf
2. Python Cheat Sheet.pdf
 

Plus de LISP Content (12)

LISP: Control Structures In Lisp
LISP: Control Structures In LispLISP: Control Structures In Lisp
LISP: Control Structures In Lisp
 
LISP:Declarations In Lisp
LISP:Declarations In LispLISP:Declarations In Lisp
LISP:Declarations In Lisp
 
LISP: Errors In Lisp
LISP: Errors In LispLISP: Errors In Lisp
LISP: Errors In Lisp
 
LISP: Object Sytstem Lisp
LISP: Object Sytstem LispLISP: Object Sytstem Lisp
LISP: Object Sytstem Lisp
 
LISP: Loops In Lisp
LISP: Loops In LispLISP: Loops In Lisp
LISP: Loops In Lisp
 
LISP: Type specifiers in lisp
LISP: Type specifiers in lispLISP: Type specifiers in lisp
LISP: Type specifiers in lisp
 
LISP: Scope and extent in lisp
LISP: Scope and extent in lispLISP: Scope and extent in lisp
LISP: Scope and extent in lisp
 
LISP: Program structure in lisp
LISP: Program structure in lispLISP: Program structure in lisp
LISP: Program structure in lisp
 
LISP: Predicates in lisp
LISP: Predicates in lispLISP: Predicates in lisp
LISP: Predicates in lisp
 
LISP: Macros in lisp
LISP: Macros in lispLISP: Macros in lisp
LISP: Macros in lisp
 
LISP: Data types in lisp
LISP: Data types in lispLISP: Data types in lisp
LISP: Data types in lisp
 
LISP: Introduction To Lisp
LISP: Introduction To LispLISP: Introduction To Lisp
LISP: Introduction To Lisp
 

Dernier

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Dernier (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 

LISP: Symbols and packages in lisp

  • 2. A lisp symbol is a data object that has three user-visible components: The property list is the list that effectively provides each symbol with many modifiable named components. The print name must be the string, which is the sequence of characters used to identify the symbol. The package cell must refer to package object. A package is a data structure used to locate a symbol once given the symbols name. A symbol is uniquely identified by its name only when considered relative to a package.
  • 3. overview The property List The Print name Creating symbols Packages Translating strings to Symbols Export and import symbols Name conflicts Built-in packages
  • 4. The property list A property list contains two or more entries, with each entry associated with the key called the indicator. A property list is very much similar to an association list in its purpose, but the difference is that a property list is an object with unique identity. A property list is implemented as a memory cell containing a list with even number(possibly zero) of elements. Each pair of elements in the list constitutes an entry: the first item is the indicator, the second item is the value. When the symbol is created its property list is initially empty, properties are created by using get within a set form.
  • 5. get symbol indicator1 &optional default Get searches the property list of the symbol for an indicator eq to indicator1. if one is found, the corresponding value is returned, else default is returned. Suppose the property list of foo is ( bar t baz 3 hunoz “huh?”) Then ex: (get ‘foo ‘baz)3 (get ‘foo ‘hunoz)”Huh?” (get ‘foo ‘Zoo) nil
  • 6. remprop symbol indicator1 This removes the symbol from the property with an indicator eq to indicator1. Suppose if property foo was (color blue height 6.3) After using (remprop ‘foo ‘height) the property becomes (color blue) Returns the list that contains the property pairs of the symbol, the contents of the property lists are extracted and returned. symbol-plist symbol
  • 7. getf place indicator1 &optional default getf searches for the property list stored in place for an indicator eq to indicator1, if found returns the corresponding value, else returns the default or nil. remf removes from the property list stored in the place the property with an indicator eq to indicator1 . The property indicator and the corresponding value are removed by destructively splicing the property list. remf place indicator1
  • 8.
  • 9.
  • 10. Creating Symbols Symbols are used in two different ways: An interned symbol is one that is indexed by its print name in its catalog called a package. An uninterned symbol is one that is used simply as a data object with no special cataloguing. An uninterned symbol is printed with #: followed by its print name. make-symbol print-name creates a new uninterned symbol whose print name is the string print-name.
  • 11. copy-symbol sym &optional copy-props returns a new uninterented symbol with the same name as of the sym. If copy-props is non-nil, then the initial value and function definition of the new symbol will be the same as those of the sym, and the property list of the new symbol will be a copy of sym’s. gensym &optional x gensym invents a print name and creates a new symbol with that print name. it returns new uninterented symbol. The invented new print name consists of a prefix( which defaults to G) , followed by decimal representation of a number. The number is increased by 1 every time gensym is called.
  • 12. gentamp &optional prefix package gentemp like gensym, creates and returns new symbol. The only difference is gentemp interns the symbol in the package. Symbol-package sym returns the contents of the package cell of that symbol. This will be a package object or nil. Keywordp object returns true if the argument is a symbol and that symbol is a keyword.
  • 13.
  • 14. internal( normally hidden from other packages).A symbol is said to be interned in a package if it is accessible in that package and also is owned.
  • 15.
  • 16. Print-read consistency: An interned symbol always as a sequence of characters that, when read back in, yields the same (eq) symbol.
  • 17.
  • 18. Translating strings to symbols Whatever packet object is currently the value of *package* is referred to as current-package. When the lisp reader has obtained a string of characters thought to name a symbol, that name is looked up in the current package. If the name is found, the corresponding symbol is returned, if the name is not found, a new symbol is created for it and is placed in the current package as an internal symbol. External symbol in some other package is referred through the qualified name, consisting of the package name, then a colon, then the name of the symbol. Ex: editor: buffer refers to external symbol buffer accessible in the package named editor.
  • 19. The following four symbol qualifying syntaxes are used: foo: bar look up bar among the external symbols of the package named foo, printed when the symbol bar is external in its home package foo and is not accessible in the current package. foo::bar interns bar as if foo is the current page, printed when symbol bar is internal in its home page foo, and is not accessible in the current page. :bar interns bar as the external symbol in the keyword package and makes it evaluate to itself. Printed if the home page of the symbol bar is keyword. #:bar creates a new uninterned symbol named BAR. Printed when the symbol BAR is uninterented(has no home package )
  • 20. Exporting and Importing Symbols Symbols from one package may be exported to imported from other packages by the use of functions export and import respectively. (import ‘editor:buffer) takes the external symbol named buffer in the editor package and adds it to the current package as an internal symbol. A symbol is said to be shadowed by another symbol in some package if the first symbol would be accessible by inheritance if not for the presence of the second symbol.
  • 21. To import a symbol without the possibility of getting the error because of shadowing use the function shadowing-import. Use package causes a package to inherit all of the external symbols from some other package. Unlike import, use-package does not cause any of the new symbols to be present in the current package, but makes them accessible by inheritance.
  • 22. The function export takes the symbol that is accessible in some specified package, and makes it an external symbol of that package. If the symbol is directly present as an internal symbol, the it is imply changed to external status. If the symbol is accessible via use-package, the symbol is first imported to the package and then exported. If the same name is being used more than once name-conflicts may occur, so care has to be taken to avoid any such name conflicts.
  • 23. Built-in Packages Common lisp built-in packages: Lisp contains the primitives of the common lisp system. Its external symbols include all of the user defined functions such as car, car and *package*. user package is the current package at the time a Common Lisp system starts up. common-lisp package contains the primitives of the ANSI commomLisp system. common-lisp-user is by default the current package at the time, an ANSI common Lisp system starts up.
  • 24. Built-in packages Keyword package contains all the keywords used by built-in or user-defined Lisp functions. System package name is reserved to the implementation. This is used to contain names of implementation-dependent system-interface functions. This package uses lisp and has the nickname sys.
  • 25. Visit more self help tutorials Pick a tutorial of your choice and browse through it at your own pace. The tutorials section is free, self-guiding and will not involve any additional support. Visit us at www.dataminingtools.net