Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: Regular function


Related Topics

In the News (Sun 29 Nov 09)

  
  Classification Manual - Chapter 4: Functional Classification of Government Activities
To illustrate the functional interrelationship among different types of data, Table 4-1 provides a cross-classification of revenue, expenditure, and debt codes by function.
Instead, these functions represent broad activities of govern- ments that have remained virtually unchanged for years, thereby preserving their usefulness for analytical purposes even while specific Federal and state programs expand or contract.
In conjunction with the regular function codes, the organization phase employs a set of function codes expressly for special district governments.
www.census.gov /govs/www/class_ch4.html   (1052 words)

  
  C++/CLI - Lesson 15: Pointers to Functions   (Site not responding. Last check: 2007-10-31)
In fact, when calling a function that takes an argument, if that argument itself is gotten from a value returned by a function, the calling of the second function can be done directly when calling the first function.
A callback function is a pointer to a function.
A pointer to a function is a special function that is declared as a pointer.
www.functionx.com /cppcli/Lesson15.htm   (1840 words)

  
 PHP & Regular Expressions
Regular expressions are one of those quirky features that popup in a variety of programming languages, but because they seem to be a difficult concept to grasp, many developers push them away into the corner, forgetting that they even exist.
The reason that regular expressions may be slower is because they involve the copying and pasting of strings in memory as each new part of a regular expression is matched against a string.
However, from my experience with regular expressions, the performance hit isn't noticeable unless you're running a complex regular expression against several hundred lines of text, which is rarely the case when used as an input data validation tool.
www.interspire.com /content/articles/17/1/PHP-&-Regular-Expressions   (2383 words)

  
 Regular Expressions
A regular expression is an object that describes a pattern of characters.
Regular expressions are a big part of Perl and the next class in this series will cover them in much greater depth.
Regular express syntax, however, includes ways of grouping and excluding characters, including special characters, and counting characters.
faculty.washington.edu /kkbarker/ClassPages/Js/RegularExpressions.html   (448 words)

  
 POV-Ray: Documentation: 2.5.11.16 Function Image
The pixels of the image are derived from the Function_Body, with Function_Body either being a regular function, a pattern function or a pigment function.
In case of a pigment function the output image will be in color, in case of a pattern or regular function the output image will be grayscale.
The pattern functions are returning a scalar, not a color vector, thus a pattern is grayscale.
www.povray.org /documentation/view/3.6.1/379   (251 words)

  
 Match Regular Expression - LabVIEW 8 Help
Searches for a regular expression in the input string beginning at the offset you enter and, if it finds a match, splits the string into three substrings and any number of submatches.
Resize the function to view any submatches found in the string.
Otherwise, it describes the error status that this VI or function produces.
zone.ni.com /reference/en-XX/help/371361A-01/glang/match_regular_expression   (704 words)

  
 [No title]   (Site not responding. Last check: 2007-10-31)
IF _can_ be a regular function, provided the evaluation of its 'branch' arguments could somehow be delayed.
In this language, the "if function" has more than an academic interest as an 'if statement' in Python is not an expression (that is, does not yield a value).
The eval function should not impose a big overhead as it is given an already compiled expression (code object).
okmij.org /ftp/Scheme/if-function.txt   (531 words)

  
 12 Using Regular Expressions With Oracle Database
Regular expression support is implemented with a set of Oracle Database SQL functions that allow you to search and manipulate string data.
As with all text literals used in SQL functions, regular expressions must be enclosed or wrapped between single quotes.
Use this function in the WHERE clause of a query to return rows matching the regular expression you specify.
www.stanford.edu /dept/itss/docs/oracle/10g/appdev.101/b10795/adfns_re.htm   (1979 words)

  
 PHP: create_function - Manual
Anon function recursion by referencing the function variable in the correct scope.
This is merely a convenience function that generates a unique name for a regular function.
If you need to change a part of a function everytime you run a loop, think of a way to make a more general function or try using eval :) (functions are made to be re-used.
www.php.net /create_function   (1742 words)

  
 JavaScript function declaration ambiguity
Only the first one is an actual function declaration, whereas the shorthand method is just a regular variable declaration with an anonymous function assigned to it as its value.
Also worth knowing is that the var syntax is allowed in some places where a function declaration is not — inside a function, the spec only allows function declarations at the top of the function, whereas you may declare a var keyword later on, mid-function.
Another advantage of using the function name() syntax is that the name property of the variable will be set to the string value of the name (think this.constructor.name when debugging).
www.dustindiaz.com /javascript-function-declaration-ambiguity   (1166 words)

  
 CodeGuru: Function Objects (STL)   (Site not responding. Last check: 2007-10-31)
Function objects are often referred to as smart functions due to their advantages pointed out in the previous paragraph.
Function objects can be classified by more than one criterion, but the most important one is whether or not they carry a state.
Stateless function objects are the closest correspondent to a regular function.
www.codeguru.com /cpp/cpp/cpp_mfc/stl/article.php/c11449   (1575 words)

  
 Pointers to C++ Member Functions
Member function pointers are important because they provide an efficient way to cache the outcome of a decision over which member function to call.
Using the wrong setting for your project may result in an apparently gross code generation bug, because a member function pointer returned by a function that supplies them may have a different size than the recipient function expects, causing bogus data to be overwritten on the stack.
One of the best uses for member function pointers is caching the outcome of a decision over which ofseveral member functions should be called in a particular circumstance.
linuxquality.sunsite.dk /articles/memberpointers   (2133 words)

  
 Regular function - Wikipedia, the free encyclopedia
In mathematics, a regular function in the sense of algebraic geometry is an everywhere-defined, polynomial function on an algebraic variety V with values in the field K over which V is defined.
A regular function is the same as a morphism to the affine line, or in the language of scheme theory a global section of the structure sheaf.
In fact taking the function field K(V) of an irreducible algebraic curve V, the functions F in the function field may all be realised as morphisms from V to the projective line over K.
en.wikipedia.org /wiki/Regular_function   (417 words)

  
 Templates
A template parameter is a special kind of parameter that can be used to pass a type as argument: just like regular function parameters can be used to pass values to a function, template parameters allow to pass also types to a function.
They are compiled on demand, meaning that the code of a template function is not compiled until an instantiation with specific template arguments is required.
Taking a library of functions as example, the interface generally consists of declarations of the prototypes of all the functions that can be called.
www.cplusplus.com /doc/tutorial/templates.html   (1526 words)

  
 Passing a pointer to member function as a parameter to another member function - C++
function is different from a pointer to a regular function.
That is, the func cannot be passed to caller.
All the functions are in the same class, shouldn't the
www.thescripts.com /forum/thread60811.html   (1697 words)

  
 Lesson 15: Function Pointers and Delegates   (Site not responding. Last check: 2007-10-31)
Even with this definition of the Perimetre() function, there is no relationship between the Perimeter member of the CSquare class and the Perimetre() independent function, and the compiler doesn't see any relationship between them.
As we saw in the previous sections, a pointer to a function is a type of variable whose name can be used as a variable although it is not a traditional variable like the others.
While a function pointer can be associated with a global function, that is, a function that is not a member of a class, a delegate can be associated with, or can reference, only a member of a class
www.functionx.com /vccli2/Lesson15.htm   (4047 words)

  
 ' + pPage + '
In the interior of the function stub is a small amount of code that calls the real function in the DLL, passing all of the arguments that were passed to the stub.
Because these functions are adding and removing objects from the array, they need to work with the actual array and not a copy of it.
With the rest of the functions, you must add a pointer to the object array as a function argument and then alter the uses of the array to use the pointer instead of the no longer existing member variable.
www.angelfire.com /tv2/ayyazshahid/ch17.htm   (5663 words)

  
 Programming in Emacs Lisp - Regular Expression Searches
Indeed, the function looks longer and more complicated than it is; this is because the function is designed to go backwards as well as forwards; and, optionally, over more than one sentence.
function must be able to find the end of a paragraph when all or many of the lines in the buffer begin with the fill prefix.
function is used here because of a characteristic of a forward search: a successful forward search, regardless of whether it is a plain search or a regular expression search, will move point to the end of the text that is found.
www.math.utah.edu /docs/info/emacs-lisp-intro_13.html   (3984 words)

  
 Zend Technologies - Code Gallery Spotlight - Regular Expressions in PHP
The simplest form of regular expressions is to match a single character or word.
The difference in regular expressions is that it must follow the pattern you wish to match, rather than just replace it.
Another useful function in regular expressions is the (square) bracket.
www.zend.com /zend/spotlight/code-gallery-wade5.php   (1471 words)

  
 MATLAB Central - Loren on the Art of MATLAB » Blog Archive » MATLAB, Strings, and Regular Expressions
regular expressions, they provide a mechanism to describe patterns in text, for matching or replacing.
If there is not, it would be useful in the future to have a regular expression function that could accept a file name instead of a string.
Matlab’s regular expression functions are certainly useful in certain situations, but when parsing large files, Perl still comes out ahead.
blogs.mathworks.com /loren/?p=27   (1638 words)

  
 Templates
A template is a generic function or class which can deal with arbitrary types of data.
Function templates are implemented like regular functions, except they are prefixed with the keyword template.
Using function templates is very easy: just call them like regular functions.
www.cs.uregina.ca /Links/class-info/210/Lab6_Template   (1033 words)

  
 UnrealWiki: Replicated Function
It's a function call sent over network (from server to a client, for example, or from a client back to the server; it is not possible however to replicate a function from one client to another client).
Owner of the actor containing the replicated function must be a PlayerPawn in UT or a PlayerController or Pawn owned by a PlayerController in UT2003.
Function calls will always reach the other side if the connection is free of errors.
wiki.beyondunreal.com /wiki/Replicated_Function   (597 words)

  
 kbAlertz: This article describes how to properly implement an exported function from an MFC Regular DLL that uses the ...
Size is the major advantage for converting a statically-linked Regular DLL to a Regular DLL that uses the MFC Shared Library.
The AfxGetStaticModuleState() function is a special MFC function in Regular DLLs that returns the module state of the Regular DLL in the context of the DLL.
The primary culprit here is the AfxGetApp() function, which is used to call either PreTranslateMessage() in the case of FilterDLLMsg() or OnIdle() in the case of ProcessDLLIdle().
www.kbalertz.com /kb_Q140850.aspx   (1235 words)

  
 SQL Server 2005: CLR Integration : Working with Regular Expressions   (Site not responding. Last check: 2007-10-31)
SQL Server provides you with a set of built-in functions that can be used in your queries but with CLR Integration you can enhance this set to any functionality from the list of supported framework libraries for e.g.
One such very useful functionality that this enables is to match patterns using regular expressions.
Another good use of regular expression function is as a constraint in your table.
blogs.msdn.com /sqlclr/archive/2005/06/29/regex.aspx   (937 words)

  
 ! Aware to man pages: sed(1)
The last regular expression is de- fined as the last regular expression used as part of an address or sub- stitute command, and at run-time, not compile-time.
Sed Functions In the following list of commands, the maximum number of permissible ad- dresses for each command is indicated by [0addr], [1addr], or [2addr], representing zero, one, or two addresses.
The `r' and `w' functions take an optional file parameter, which should be separated from the function letter by white space.
www.rocketaware.com /man/man1/sed.1.htm   (1880 words)

  
 S 2.282 Monitoring of routers and switches - IT Grundschutz Manual 2004
This includes, for example, regular function tests, arranging for changes to be implemented, checking their implementation and reviewing the log files and alarms.
Regular checks must be carried out to ensure that the security policy is being observed (e.g.
Regular checks should be carried out to see whether the port mirroring function is deactivated during normal operations.
www.bsi.de /english/gshb/manual/s/s02282.htm   (1125 words)

  
 PlanetMath: holomorphic
Cross-references: class, variables, point, complex derivative, function, complex numbers, domain
(Functions of a complex variable :: Entire and meromorphic functions, and related topics :: Entire functions, general theory)
(Several complex variables and analytic spaces :: Holomorphic functions of several complex variables :: Holomorphic functions)
planetmath.org /encyclopedia/RegularFunction.html   (63 words)

  
 Regular Function -- from Wolfram MathWorld
A function is termed regular iff it is analytic and
SEE ALSO: Analytic Function, Holomorphic Function, Regular Rational Function, Single-Valued Function.
"Regular Function." From MathWorld--A Wolfram Web Resource, created by Eric W. Weisstein.
mathworld.wolfram.com /RegularFunction.html   (82 words)

  
 Regular Expression Quick Start
A regular expression, or regex for short, is a pattern describing a certain amount of text.
Alternation is the regular expression equivalent of "or".
Use regular expressions to search through large numbers of text and binary files, such as source code, correspondence, server or system logs, reference texts, archives, etc. Quickly find the files you are looking for, or extract the information you need.
www.regular-expressions.info /quickstart.html   (1210 words)

  
 Macromedia Flash - ActionScript Dictionary : Function.call
The function call operator makes for code that is concise and readable.
to point somewhere else; for example, if a function must be invoked as a method of an object, but is not actually stored as a method of that object.
parameter to invoke a function as a regular function and not as a method of an object.
www.adobe.com /support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary370.html   (209 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.