SlideShare ist ein Scribd-Unternehmen logo
1 von 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.

Weitere ähnliche Inhalte

Was ist angesagt?

Learn Python The Hard Way Presentation
Learn Python The Hard Way PresentationLearn Python The Hard Way Presentation
Learn Python The Hard Way PresentationAmira ElSharkawy
 
Python-01| Fundamentals
Python-01| FundamentalsPython-01| Fundamentals
Python-01| FundamentalsMohd Sajjad
 
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 TypesRavi Shankar
 
Python Programming Basics for begginners
Python Programming Basics for begginnersPython Programming Basics for begginners
Python Programming Basics for begginnersAbishek Purushothaman
 
Subroutines in perl
Subroutines in perlSubroutines in perl
Subroutines in perlsana mateen
 
Python second ppt
Python second pptPython second ppt
Python second pptRaginiJain21
 
Python language data types
Python language data typesPython language data types
Python language data typesHoang Nguyen
 
Introduction To Programming with Python-3
Introduction To Programming with Python-3Introduction To Programming with Python-3
Introduction To Programming with Python-3Syed Farjad Zia Zaidi
 
Perl_Part1
Perl_Part1Perl_Part1
Perl_Part1Frank Booth
 
The Java Script Programming Language
The  Java Script  Programming  LanguageThe  Java Script  Programming  Language
The Java Script Programming Languagezone
 
The JavaScript Programming Language
The JavaScript Programming LanguageThe JavaScript Programming Language
The JavaScript Programming LanguageRaghavan Mohan
 
Lexical analyzer
Lexical analyzerLexical analyzer
Lexical analyzerkiran acharya
 
Introduction to Python
Introduction to Python Introduction to Python
Introduction to Python amiable_indian
 
Operator precedance parsing
Operator precedance parsingOperator precedance parsing
Operator precedance parsingsanchi29
 
Python-The programming Language
Python-The programming LanguagePython-The programming Language
Python-The programming LanguageRohan Gupta
 

Was ist angesagt? (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
 

Andere mochten auch

The packaging industry in india
The packaging industry in indiaThe packaging industry in india
The packaging industry in indiaUdyog Mitra (Bihar)
 
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 -SampleNetscribes, 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
Packagingshankh
 
Flexible packaging materials 2013
Flexible packaging materials 2013Flexible packaging materials 2013
Flexible packaging materials 2013Jose Giraldez
 
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!Stratigo -
 
Packaging & labeling in food industries
Packaging & labeling in food industriesPackaging & labeling in food industries
Packaging & labeling in food industriesnaveenaugust
 
Marketing - Packaging Project CBSE
Marketing - Packaging Project CBSEMarketing - Packaging Project CBSE
Marketing - Packaging Project CBSESaish Gaonkar
 

Andere mochten auch (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
 

Ähnlich wie LISP: Symbols and packages in lisp

LISP: Input And Output
LISP: Input And OutputLISP: Input And Output
LISP: Input And OutputLISP Content
 
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.pdftsekar2004
 
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 ScienceKrithikaTM
 
Vizwik Coding Manual
Vizwik Coding ManualVizwik Coding Manual
Vizwik Coding ManualVizwik
 
AI UNIT-4 Final (2).pptx
AI UNIT-4 Final (2).pptxAI UNIT-4 Final (2).pptx
AI UNIT-4 Final (2).pptxprakashvs7
 
Functions2.pdf
Functions2.pdfFunctions2.pdf
Functions2.pdfprasnt1
 
Python programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsPython programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsMegha V
 
Beginners python cheat sheet - Basic knowledge
Beginners python cheat sheet - Basic knowledge Beginners python cheat sheet - Basic knowledge
Beginners python cheat sheet - Basic knowledge O T
 
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.pdfactioncbe1
 
Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4Anton Kasyanov
 
AI Programming language (LISP)
AI Programming language (LISP)AI Programming language (LISP)
AI Programming language (LISP)SURBHI SAROHA
 
Functions in Python Syntax and working .
Functions in Python Syntax and working .Functions in Python Syntax and working .
Functions in Python Syntax and working .tarunsharmaug23
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptxssuser8e50d8
 
2. Python Cheat Sheet.pdf
2. Python Cheat Sheet.pdf2. Python Cheat Sheet.pdf
2. Python Cheat Sheet.pdfMeghanaDBengalur
 

Ähnlich wie 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
 

Mehr von LISP Content

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

Mehr von 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
 

KĂźrzlich hochgeladen

Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
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 textsMaria Levchenko
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
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 SolutionsEnterprise Knowledge
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 

KĂźrzlich hochgeladen (20)

Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
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
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
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
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 

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