Functional Programming in C++ | 0:e upplagan
- Danskt band, Engelska, 2019
- Författare: Ivan Cukic
- Betyg:
352
kr
Skickas inom 6-10 vardagar
Butikslager
Onlinelager
I lager hos leverantör
$event.detail.name === 'store-selector' ? isOpen = true : ''"
@close-drawer.window="() => $event.detail.name === 'store-selector' ? isOpen = false : ''"
@keydown.escape.window="isOpen = false"
x-init="$watch('isOpen', value => {
if (value) {
$refs.dialog.showModal();
document.body.style.overflow = 'hidden';
//emit onDrawerOpen event
$dispatch('drawer-opened', {
name: 'store-selector'
});
} else {
setTimeout(() => {
$refs.dialog.showModal();
$refs.dialog.close();
}, 300);
document.body.style.overflow = '';
$dispatch('drawer-closed', {
name: 'store-selector'
});
}
});"
class="h-full"
>
Beskrivning
Functional programming is becoming a required skill for all
programmers, and for good reason. The functional style of
programming lets developers to write more concise code, which tends
to have fewer bugs.
Functional Programming in C++ teaches developers the practical side
of functional programming and what tools C++ provides to develop
software in the functional style.
KEY FEATURES
• Practical-guide
• Hands-on examples
• Step-by-step instructions
This book is for developers who have worked professionally with C++
for 2 or more years.
ABOUT THE TECHNOLOGY
Broadly speaking, Functional Programming is a style of programming
where the main programming building blocks are functions, as
opposed to objects and procedures.
AUTHOR BIO
Ivan Čukić has been teaching modern C++ techniques and functional
programming at the Faculty of Mathematics in Belgrade for 6 years and has
been using C++ for more than 15 years. He has been researching functional
programming in C++ before and during his PhD studies, and uses the
techniques in real-world projects. He is one of the core developers in KDE,
the largest free/libre open source C++ project.
programmers, and for good reason. The functional style of
programming lets developers to write more concise code, which tends
to have fewer bugs.
Functional Programming in C++ teaches developers the practical side
of functional programming and what tools C++ provides to develop
software in the functional style.
KEY FEATURES
• Practical-guide
• Hands-on examples
• Step-by-step instructions
This book is for developers who have worked professionally with C++
for 2 or more years.
ABOUT THE TECHNOLOGY
Broadly speaking, Functional Programming is a style of programming
where the main programming building blocks are functions, as
opposed to objects and procedures.
AUTHOR BIO
Ivan Čukić has been teaching modern C++ techniques and functional
programming at the Faculty of Mathematics in Belgrade for 6 years and has
been using C++ for more than 15 years. He has been researching functional
programming in C++ before and during his PhD studies, and uses the
techniques in real-world projects. He is one of the core developers in KDE,
the largest free/libre open source C++ project.
Produktinformation
Kategori:
Data & IT
Bandtyp:
Danskt band
Språk:
Engelska
Förlag:
Pearson Education
Upplaga:
0
Utgiven:
2019-02-04
ISBN:
9781617293818
Sidantal:
320
$event.detail.name === 'primary-menu' ? isOpen = true : ''"
@close-drawer.window="() => $event.detail.name === 'primary-menu' ? isOpen = false : ''"
@keydown.escape.window="isOpen = false"
x-init="$watch('isOpen', value => {
if (value) {
$refs.dialog.showModal();
document.body.style.overflow = 'hidden';
//emit onDrawerOpen event
$dispatch('drawer-opened', {
name: 'primary-menu'
});
} else {
setTimeout(() => {
$refs.dialog.showModal();
$refs.dialog.close();
}, 300);
document.body.style.overflow = '';
$dispatch('drawer-closed', {
name: 'primary-menu'
});
}
});"
class="h-full"
>
$event.detail.name === 'mobile-search' ? isOpen = true : ''"
@close-drawer.window="() => $event.detail.name === 'mobile-search' ? isOpen = false : ''"
@keydown.escape.window="isOpen = false"
x-init="$watch('isOpen', value => {
if (value) {
$refs.dialog.showModal();
document.body.style.overflow = 'hidden';
//emit onDrawerOpen event
$dispatch('drawer-opened', {
name: 'mobile-search'
});
} else {
setTimeout(() => {
$refs.dialog.showModal();
$refs.dialog.close();
}, 300);
document.body.style.overflow = '';
$dispatch('drawer-closed', {
name: 'mobile-search'
});
}
});"
class="h-full"
>
$event.detail.name === 'mini-cart' ? isOpen = true : ''"
@close-drawer.window="() => $event.detail.name === 'mini-cart' ? isOpen = false : ''"
@keydown.escape.window="isOpen = false"
x-init="$watch('isOpen', value => {
if (value) {
$refs.dialog.showModal();
document.body.style.overflow = 'hidden';
//emit onDrawerOpen event
$dispatch('drawer-opened', {
name: 'mini-cart'
});
} else {
setTimeout(() => {
$refs.dialog.showModal();
$refs.dialog.close();
}, 300);
document.body.style.overflow = '';
$dispatch('drawer-closed', {
name: 'mini-cart'
});
}
});"
class="h-full"
>
$event.detail.name === 'add-to-cart' ? isOpen = true : ''"
@close-drawer.window="() => $event.detail.name === 'add-to-cart' ? isOpen = false : ''"
@keydown.escape.window="isOpen = false"
x-init="$watch('isOpen', value => {
if (value) {
$refs.dialog.showModal();
document.body.style.overflow = 'hidden';
//emit onDrawerOpen event
$dispatch('drawer-opened', {
name: 'add-to-cart'
});
} else {
setTimeout(() => {
$refs.dialog.showModal();
$refs.dialog.close();
}, 300);
document.body.style.overflow = '';
$dispatch('drawer-closed', {
name: 'add-to-cart'
});
}
});"
class="h-full"
>