wrap_up.qbk 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [/==============================================================================
  2. Copyright (C) 2001-2010 Joel de Guzman
  3. Copyright (C) 2001-2005 Dan Marsden
  4. Copyright (C) 2001-2010 Thomas Heller
  5. Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. ===============================================================================/]
  8. [section Wrap Up]
  9. Sooner or later more FP techniques become standard practice as people find the
  10. true value of this programming discipline outside the academe and into the
  11. mainstream. In as much as structured programming of the 70s and object oriented
  12. programming in the 80s and generic programming in the 90s shaped our thoughts
  13. towards a more robust sense of software engineering, FP will certainly be a
  14. paradigm that will catapult us towards more powerful software design and
  15. engineering onward into the new millennium.
  16. Let me quote Doug Gregor of Boost.org. About functional style programming
  17. libraries:
  18. [:['They're gaining acceptance, but are somewhat stunted by the ubiquitousness
  19. of broken compilers. The C++ community is moving deeper into the so-called "STL-
  20. style" programming paradigm, which brings many aspects of functional programming
  21. into the fold. Look at, for instance, the Spirit parser to see how such function
  22. objects can be used to build Yacc-like grammars with semantic actions that can
  23. build abstract syntax trees on the fly. This type of functional composition is
  24. gaining momentum.]]
  25. Indeed. Phoenix is another attempt to introduce more FP techniques into the
  26. mainstream. Not only is it a tool that will make life easier for the programmer.
  27. In its own right, the actual design of the library itself is a model of true C++
  28. FP in action. The library is designed and structured in a strict but clear and
  29. well mannered FP sense. By all means, use the library as a tool. But for those
  30. who want to learn more about FP in C++, don't stop there, I invite you to take a
  31. closer look at the design of the library itself.
  32. So there you have it. Have fun! See you in the FP world.
  33. [endsect]