SlideShare a Scribd company logo
Clojure Example Functions

                        ilegra - LDC
By Jackson dos Santos
Select-keys
user => (prn (select-keys {:a 1 :b 2 :c 3} [:a :b]))
{:b 2, :a 1}
nil
shuffle
user => (shuffle '(1 2 3 4 5 6))
[1 6 4 5 3 2]
Set-error-handler - set-error-mode
   (def bond (agent 1))

   (defn handle-log-error [the-agent the-err]
     (println (str "the Agent " the-agent " threw the exception " the-err))
   )

   (set-error-handler! bond handle-log-error)

   (set-error-mode! bond :fail)

   (send bond / 0)
some-fn
user => ((some-fn odd?) 2 4 6)
=> false


It works just for clojure 1.3....
4Clojure Problems Solved
4Clojure Problems Solved
4Clojure Problems Solved

More Related Content

PPT
شرح مقرر البرمجة 2 لغة جافا - الوحدة الثالثة
PPT
شرح مقرر البرمجة 2 لغة جافا - الوحدة الرابعة
PDF
Testing in those hard to reach places
 
PPTX
Session05 iteration structure
PPTX
Random stability in systemVerilog and UVM based testbench
PPTX
Introduction to Unit Testing (Part 2 of 2)
DOCX
Module nco rtl
PDF
Deferred
شرح مقرر البرمجة 2 لغة جافا - الوحدة الثالثة
شرح مقرر البرمجة 2 لغة جافا - الوحدة الرابعة
Testing in those hard to reach places
 
Session05 iteration structure
Random stability in systemVerilog and UVM based testbench
Introduction to Unit Testing (Part 2 of 2)
Module nco rtl
Deferred

What's hot (20)

DOCX
VISUALIZAR REGISTROS EN UN JTABLE
PDF
Codes on structures
PDF
Set Operations in Unix Shell
PDF
Magic methods
PDF
Ansible 2.0 spblug
PDF
Java 스터디 강의자료 - 1차시
PDF
Property-based testing
PDF
EasyMock 101
PPTX
PHP 5 Magic Methods
PDF
The art of reverse engineering flash exploits
DOCX
How to launch workflow from plsql
PDF
Caligrafia para desenvolvedores
PDF
The Ring programming language version 1.5.2 book - Part 9 of 181
ODP
Fighting null with memes
PDF
Writing Macros
PPTX
Groovy closures
PPTX
Python as a calculator
PDF
Java Cheat Sheet
PDF
From Javascript To Haskell
VISUALIZAR REGISTROS EN UN JTABLE
Codes on structures
Set Operations in Unix Shell
Magic methods
Ansible 2.0 spblug
Java 스터디 강의자료 - 1차시
Property-based testing
EasyMock 101
PHP 5 Magic Methods
The art of reverse engineering flash exploits
How to launch workflow from plsql
Caligrafia para desenvolvedores
The Ring programming language version 1.5.2 book - Part 9 of 181
Fighting null with memes
Writing Macros
Groovy closures
Python as a calculator
Java Cheat Sheet
From Javascript To Haskell
Ad

Viewers also liked (7)

PDF
Clojure functions
PDF
Clojure functions 4
PDF
Clojure functions examples
PPSX
Celery Introduction
Ad

More from Jackson dos Santos Olveira (20)

PDF
AWS Control Tower
PDF
PDF
An introduction to predictionIO
PDF
Introduction to HashiCorp Consul
PDF
Apache mahout - introduction
PDF
Managing computational resources with Apache Mesos
PDF
Introduction to CFEngine
PDF
PDF
Jboss Teiid - The data you have on the place you need
PDF
Apache PIG introduction
PPSX
Jboss AS7 New Main Features
PPT
Elastic search introduction
PPT
Presentation about ClosureScript fraemework
PDF
Clojure functions midje
AWS Control Tower
An introduction to predictionIO
Introduction to HashiCorp Consul
Apache mahout - introduction
Managing computational resources with Apache Mesos
Introduction to CFEngine
Jboss Teiid - The data you have on the place you need
Apache PIG introduction
Jboss AS7 New Main Features
Elastic search introduction
Presentation about ClosureScript fraemework
Clojure functions midje

Recently uploaded (20)

PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Transforming Manufacturing operations through Intelligent Integrations
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Spectral efficient network and resource selection model in 5G networks
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Chapter 3 Spatial Domain Image Processing.pdf
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
The Rise and Fall of 3GPP – Time for a Sabbatical?
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Transforming Manufacturing operations through Intelligent Integrations
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
CIFDAQ's Market Insight: SEC Turns Pro Crypto
NewMind AI Weekly Chronicles - August'25 Week I
Review of recent advances in non-invasive hemoglobin estimation
20250228 LYD VKU AI Blended-Learning.pptx
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Per capita expenditure prediction using model stacking based on satellite ima...
MYSQL Presentation for SQL database connectivity
Dropbox Q2 2025 Financial Results & Investor Presentation
Advanced methodologies resolving dimensionality complications for autism neur...
NewMind AI Monthly Chronicles - July 2025
Spectral efficient network and resource selection model in 5G networks

Clojure functions 3