SlideShare a Scribd company logo
Predicates in Lisp
 PredicatesA predicate is a function used to test for some condition involving its arguments and returns nil if the condition is false, or some non-nil value if the condition is true.Name of the predicates in CL usually ends with p.Ex: numberp, standard-char-p etc.
overviewLogical valuesData Type predicatesGeneral Type PredicatesSpecific data type predicatesEquality predicatesLogical operators
Logical valuesThe names nil and t are constants in LispThis object represents logical false value and also the empty list.It can also be written as ()The values of nil and t are not permitted to be changed.Data type predicates:using data type predicates one can determine    whether or not it belongs to a given type, or one     can compare two type specifies.
General Type predicatesSyntax:typep object typeTypep is the predicate that is true if the object is of type type false otherwise.Subtypep type1 type2This predicate returns T if type1 is a subtype of type1 else it returns nil.Ex: (subtypep t t) returns T
Subtypep are supposed to return a second value of nil unless one or both of its arguments involves satisfies and, or, not or member.Subtypep should signal an error when one or both of its arguments involves values or the list form of the function type specifierSubtypep must always return the two values t and t in the case where its arguments, after expansion of specifies defined by deftype are equal.(subtypep ‘(array A) ‘ (array B)) is true if and only if (upgraded-array-element-type ‘A) is the same type as (upgraded-array-element-type ‘ b)(subtypep ‘ (complex A) ‘ (complex B)) is true if and only if (upgraded-complex-part-type ‘A) and (upgraded-complex-part-type ‘B) is of same type.
Specific data type predicatesThe following data types test for specific individual data types.null object returns true if the argument is () or false otherwise.symbolp object returns true if the argument is a symbol else returns falseatom object is true if the argument is not cons otherwise its false.consp object is true if the argument is a cons, false otherwiselistp objectis true if the argument is a cons or an empty list (), false otherwiseNumberp object is T if the argument is any kind of number
Rationalp object is T if the argument is a rational number false otherwiseSimilarly we have floatp, charaterp, vectorp, stringp, complexp, simple-bit-vector-p, simple-string-vector-p, arrayp etc.packagep object is T if its argument is a package and otherwise is falsefunctionp object is T if its arguments are suitable for applying to arguments, using for ex the funccall or apply function and otherwise is falseCompiled-function-p object is T if its argument is any compiled code object and otherwise is falseCommonp object is T if its argument is any standard CL data type, and otherwise is false
Equality predicatesCl provides these predicates to test for the equality of the two objects: eq, eql, equal, equalp eq x y is true if and only if x and y are the same identical objects.Ex: (eq ‘g ‘h) false       (eq 3 3)true        (eq “hi” “HI”) falseEql x y is true if the arguments are eq, or of there are numbers of the same type with the same value, or if there are character objects that represent the same character
equal x yis true if the arguments are structurally similar objects. (isomorphic objects)Ex: (equal #\B #\B) true        (equal “FOO” “FOO”) trueequalp x y is true if the two objects are equal, and if and only if they are eq that is, the same identical object. two hash tables are considered the same by equalp if and only if they satisfy the following four conditions:They must be of the same kind ( equivalent :test arguments must be given to make hash-table when the two hash-tables are created.
They must have the same number of entries.
For every entry(key1, value1) in one hash table there must be the corresponding entry(key2, value2) in the other hash table.
For every entry(key1, value1) in one hash table and its corresponding entry(key2, value2) in the other , such that key1 and key2 are the same, equalp must be true of value1 and value2.Logical operatorsCL provides three operators as Boolean value: and, or, and notEx: not yReturns t if y is nil else returns nil.And returns t if the condition is true else NIL.Ex: (and form1, form2,…)Evaluates each form one at the time from left to right. If at least one form returns a nil, the evaluation is stopped by returning a nil.Ex: (and (< 1 2)                 (< 3 4)                 (princ “true”))true   “true”

More Related Content

What's hot (16)

PDF
07 top-down-parsing
Harish Khodke
 
PPTX
Linear Search
SWATHIR72
 
PPTX
SEARCHING
SWATHIR72
 
PPTX
LL(1) parsing
KHYATI PATEL
 
PPT
Top down parsing
ASHOK KUMAR REDDY
 
PDF
Python basic operators
Learnbay Datascience
 
PPTX
Data structures and algorithms
Hoang Nguyen
 
PPTX
Type Conversion, Precedence and Associativity
Aakash Singh
 
PPTX
LR(1) and SLR(1) parsing
R Islam
 
PPTX
Compiler Design LR parsing SLR ,LALR CLR
Riazul Islam
 
PPTX
Lecture 07 08 syntax analysis-4
Iffat Anjum
 
PPTX
Type conversion, precedence, associativity in c programming
Dhrumil Panchal
 
PPT
Bottom - Up Parsing
kunj desai
 
PPTX
Binary search
sana younas
 
PPTX
OPERATORS OF C++
ANANT VYAS
 
PDF
Lecture11 syntax analysis_7
Mahesh Kumar Chelimilla
 
07 top-down-parsing
Harish Khodke
 
Linear Search
SWATHIR72
 
SEARCHING
SWATHIR72
 
LL(1) parsing
KHYATI PATEL
 
Top down parsing
ASHOK KUMAR REDDY
 
Python basic operators
Learnbay Datascience
 
Data structures and algorithms
Hoang Nguyen
 
Type Conversion, Precedence and Associativity
Aakash Singh
 
LR(1) and SLR(1) parsing
R Islam
 
Compiler Design LR parsing SLR ,LALR CLR
Riazul Islam
 
Lecture 07 08 syntax analysis-4
Iffat Anjum
 
Type conversion, precedence, associativity in c programming
Dhrumil Panchal
 
Bottom - Up Parsing
kunj desai
 
Binary search
sana younas
 
OPERATORS OF C++
ANANT VYAS
 
Lecture11 syntax analysis_7
Mahesh Kumar Chelimilla
 

Similar to LISP: Predicates in lisp (20)

PDF
12TypeSystem.pdf
MdAshik35
 
PPTX
Type checking compiler construction Chapter #6
Daniyal Mughal
 
PPT
Lisp and scheme i
Luis Goldster
 
PPT
Type Checking(Compiler Design) #ShareThisIfYouLike
United International University
 
PPTX
LISP: Type specifiers in lisp
DataminingTools Inc
 
PPTX
LISP: Type specifiers in lisp
LISP Content
 
PPT
INTRODUCTION TO LISP
Nilt1234
 
PPT
Maclennan chap5-pascal
Serghei Urban
 
PDF
Typeful programming
mustafa sarac
 
PPTX
Prolog & lisp
Ismail El Gayar
 
PDF
Real World Haskell: Lecture 3
Bryan O'Sullivan
 
PPTX
AI Programming language (LISP)
Dr. SURBHI SAROHA
 
PDF
Data handling CBSE PYTHON CLASS 11
chinthala Vijaya Kumar
 
PDF
iRODS Rule Language Cheat Sheet
Samuel Lampa
 
PPTX
Hema wt (1)
SangeethaSasi1
 
PPT
Lecture 06 relational algebra and calculus
emailharmeet
 
PPTX
Not Everything is an Object - Rocksolid Tour 2013
Gary Short
 
KEY
The Return of the Living Datalog
Mike Fogus
 
PPTX
logic for Advanced Programming Practice.pptx
sudharsr
 
PDF
Ti1220 Lecture 7: Polymorphism
Eelco Visser
 
12TypeSystem.pdf
MdAshik35
 
Type checking compiler construction Chapter #6
Daniyal Mughal
 
Lisp and scheme i
Luis Goldster
 
Type Checking(Compiler Design) #ShareThisIfYouLike
United International University
 
LISP: Type specifiers in lisp
DataminingTools Inc
 
LISP: Type specifiers in lisp
LISP Content
 
INTRODUCTION TO LISP
Nilt1234
 
Maclennan chap5-pascal
Serghei Urban
 
Typeful programming
mustafa sarac
 
Prolog & lisp
Ismail El Gayar
 
Real World Haskell: Lecture 3
Bryan O'Sullivan
 
AI Programming language (LISP)
Dr. SURBHI SAROHA
 
Data handling CBSE PYTHON CLASS 11
chinthala Vijaya Kumar
 
iRODS Rule Language Cheat Sheet
Samuel Lampa
 
Hema wt (1)
SangeethaSasi1
 
Lecture 06 relational algebra and calculus
emailharmeet
 
Not Everything is an Object - Rocksolid Tour 2013
Gary Short
 
The Return of the Living Datalog
Mike Fogus
 
logic for Advanced Programming Practice.pptx
sudharsr
 
Ti1220 Lecture 7: Polymorphism
Eelco Visser
 
Ad

More from LISP Content (12)

PPTX
LISP: Control Structures In Lisp
LISP Content
 
PPTX
LISP:Declarations In Lisp
LISP Content
 
PPTX
LISP: Errors In Lisp
LISP Content
 
PPTX
LISP: Input And Output
LISP Content
 
PPTX
LISP: Object Sytstem Lisp
LISP Content
 
PPTX
LISP: Loops In Lisp
LISP Content
 
PPTX
LISP: Symbols and packages in lisp
LISP Content
 
PPTX
LISP: Scope and extent in lisp
LISP Content
 
PPTX
LISP: Program structure in lisp
LISP Content
 
PPTX
LISP: Macros in lisp
LISP Content
 
PPTX
LISP: Data types in lisp
LISP Content
 
PPTX
LISP: Introduction To Lisp
LISP Content
 
LISP: Control Structures In Lisp
LISP Content
 
LISP:Declarations In Lisp
LISP Content
 
LISP: Errors In Lisp
LISP Content
 
LISP: Input And Output
LISP Content
 
LISP: Object Sytstem Lisp
LISP Content
 
LISP: Loops In Lisp
LISP Content
 
LISP: Symbols and packages in lisp
LISP Content
 
LISP: Scope and extent in lisp
LISP Content
 
LISP: Program structure in lisp
LISP Content
 
LISP: Macros in lisp
LISP Content
 
LISP: Data types in lisp
LISP Content
 
LISP: Introduction To Lisp
LISP Content
 
Ad

Recently uploaded (20)

PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 

LISP: Predicates in lisp

  • 2. PredicatesA predicate is a function used to test for some condition involving its arguments and returns nil if the condition is false, or some non-nil value if the condition is true.Name of the predicates in CL usually ends with p.Ex: numberp, standard-char-p etc.
  • 3. overviewLogical valuesData Type predicatesGeneral Type PredicatesSpecific data type predicatesEquality predicatesLogical operators
  • 4. Logical valuesThe names nil and t are constants in LispThis object represents logical false value and also the empty list.It can also be written as ()The values of nil and t are not permitted to be changed.Data type predicates:using data type predicates one can determine whether or not it belongs to a given type, or one can compare two type specifies.
  • 5. General Type predicatesSyntax:typep object typeTypep is the predicate that is true if the object is of type type false otherwise.Subtypep type1 type2This predicate returns T if type1 is a subtype of type1 else it returns nil.Ex: (subtypep t t) returns T
  • 6. Subtypep are supposed to return a second value of nil unless one or both of its arguments involves satisfies and, or, not or member.Subtypep should signal an error when one or both of its arguments involves values or the list form of the function type specifierSubtypep must always return the two values t and t in the case where its arguments, after expansion of specifies defined by deftype are equal.(subtypep ‘(array A) ‘ (array B)) is true if and only if (upgraded-array-element-type ‘A) is the same type as (upgraded-array-element-type ‘ b)(subtypep ‘ (complex A) ‘ (complex B)) is true if and only if (upgraded-complex-part-type ‘A) and (upgraded-complex-part-type ‘B) is of same type.
  • 7. Specific data type predicatesThe following data types test for specific individual data types.null object returns true if the argument is () or false otherwise.symbolp object returns true if the argument is a symbol else returns falseatom object is true if the argument is not cons otherwise its false.consp object is true if the argument is a cons, false otherwiselistp objectis true if the argument is a cons or an empty list (), false otherwiseNumberp object is T if the argument is any kind of number
  • 8. Rationalp object is T if the argument is a rational number false otherwiseSimilarly we have floatp, charaterp, vectorp, stringp, complexp, simple-bit-vector-p, simple-string-vector-p, arrayp etc.packagep object is T if its argument is a package and otherwise is falsefunctionp object is T if its arguments are suitable for applying to arguments, using for ex the funccall or apply function and otherwise is falseCompiled-function-p object is T if its argument is any compiled code object and otherwise is falseCommonp object is T if its argument is any standard CL data type, and otherwise is false
  • 9. Equality predicatesCl provides these predicates to test for the equality of the two objects: eq, eql, equal, equalp eq x y is true if and only if x and y are the same identical objects.Ex: (eq ‘g ‘h) false (eq 3 3)true (eq “hi” “HI”) falseEql x y is true if the arguments are eq, or of there are numbers of the same type with the same value, or if there are character objects that represent the same character
  • 10. equal x yis true if the arguments are structurally similar objects. (isomorphic objects)Ex: (equal #\B #\B) true (equal “FOO” “FOO”) trueequalp x y is true if the two objects are equal, and if and only if they are eq that is, the same identical object. two hash tables are considered the same by equalp if and only if they satisfy the following four conditions:They must be of the same kind ( equivalent :test arguments must be given to make hash-table when the two hash-tables are created.
  • 11. They must have the same number of entries.
  • 12. For every entry(key1, value1) in one hash table there must be the corresponding entry(key2, value2) in the other hash table.
  • 13. For every entry(key1, value1) in one hash table and its corresponding entry(key2, value2) in the other , such that key1 and key2 are the same, equalp must be true of value1 and value2.Logical operatorsCL provides three operators as Boolean value: and, or, and notEx: not yReturns t if y is nil else returns nil.And returns t if the condition is true else NIL.Ex: (and form1, form2,…)Evaluates each form one at the time from left to right. If at least one form returns a nil, the evaluation is stopped by returning a nil.Ex: (and (< 1 2) (< 3 4) (princ “true”))true “true”
  • 14. Or operator returns NIL for false conditions and true conditions return non-nil characters(or form1,form2,…..)Performs or operation the forms one by one from left to right. It is true if at least one of the forms are true Ex; (or (< 3 1) (> 2 1)) T
  • 15. Visit more self help tutorialsPick 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