Erlang – append
In this guide, we will discuss Erlang append. Returns a new list List3 which is made from the elements of List1 followed by the elements of List2. Syntax append(List1,List2) Parameters…
In this guide, we will discuss Erlang append. Returns a new list List3 which is made from the elements of List1 followed by the elements of List2. Syntax append(List1,List2) Parameters…
In the bootstrap page header is a nice little feature to add appropriate spacing around the headings on a page. This is particularly helpful on a web page where you…
This topic about Swift - Strings. Strings in Swift 4 are an ordered collection of characters, such as "Hello, World!" and they are represented by the Swift 4 data type String,…
In this Bootstrap Jumbotron chapter will discuss one more feature that Bootstrap supports, the Jumbotron. As the name suggest this component can optionally increase the size of headings and add…
This topic is about Swift - Loops. There may be a situation when you need to execute a block of code several number of times. In general, statements are executed…
This topic is about Swift - Decision Making. Decision making structures require that the programmer specifies one or more conditions to be evaluated or tested by the program, along with…
In this guide, we will discuss Erlang any. Returns true if Pred(Elem) returns true for at least one element Elem in List. Syntax any(Pred,lst) Parameters Pred − The predicate function which…
In this guide, we will discuss Erlang all. Returns true if Pred(Elem) returns true for all elements Elem in List, otherwise false. Syntax all(Pred,lst) Parameters Pred − The predicate function which…
In this guide, we will discuss Erlang lists. The List is a structure used to store a collection of data items. In Erlang, Lists are created by enclosing the values…
In this guide, we will discuss Erlang left. The method returns the sub string from the left of the string based on the number of characters. Syntax left(str1,number) Parameters str1 −…