This is an old revision of the document!
Pure methods are limited to are often referred to as Pure Functions. Pure Functions are a cornerstone in Functional Programming and are designed to produce no Side Effects. Pure Functions are characterized as follows1):
Figure 1 provides a grapic represeting a Pure Function. Basically, the Pure FUnction is an isolated piece of logic that given the same input always produces the same output. It's isolation means it has no unintended sideeffects outside of itself and only the inputs determine the processing. Another way to think of a Pure Function is at their center there is a Deterministic Algorithm (Also see Black Box Testing).
In some languages (i.e., C, C++, Rust, PHP, JavaScript/ECMAScript), it is possible to have methods (i.e., procedures or functions) existing outside the class container. Java and C# requires operations to exist within a class container, and therefore does not support General Methods. C++ does not recommend having General Methods outside of a class, but because C++ is more or less an extension of C, it does support them.
Often, the architecture and design of Functional Programs depends on the identification, design and creation of pluggable, reusable functions. Many of the frameworks used in modern applications reaching across many tiers rely heavily on stateless, client-server Representational State Transfer (REST) models and Command Line Interfaces (CLIs) .
Ethereum's Solidity is a OOP
does have support defining and using General Methods, those functions not directly pertaining to the Smart Contract, but can be used by the smart contracts but it does support being able to create libraries of reusable functions that support a way to provide operators for specific types.
As of Solidity 8.1, it is possible to defines a library. A library is a kind of contract, that has no Ethereum Storage associated with it and in addition, it cannot hold ether. One way to think bout a solidity library is as a Singleton in the Ethereum Virtual Machine (EVM). In other words, it is a piece of code callable from any contract without the need to redeploy it. 2)
Libraries in Solidity contracts are blocks of reusable code containing functions usable by other contracts on the blockchain network. When used correctly, libraries support modular, Object-Oriented Programming (OOP) designs.
The main advantage for using library is code reusability across multiple contracts preventing duplication of code and the reuse of testing snd documentstion of the code. In addition, libraries save on gas by not deploying the code multiple times on the blockchain.
Libraries are a special form of contracts with the following restrictions:
etherdestroy
Libraries allow for the addition of functionality to the basic types (i.e., uint) or complex user defined types (i.e., struct). Libraries are isolated from other blocks of code (i.e., contracts) that have no rely on the storage (i.e., state variables) from the calling contract and supplied to the functions.3)
Libraries support different Data Types:
strutenumconstant)
The following code provides examples for:
library called StudentRecord (Line 4)struct) defining a StudentRecord concept adding the following fields: (Lines 5-9)
name (Line 6)studentNumber (Line 7)totalClassPoints (Line 8)function named addPoints that accepts two parameters (Lines 11-17):
StudentRecord in storage (Line 12)earnedPoints to add to the students record (Line 13)totalClassPoints (Line 16)addPoints functionlibrary (Line 17)
pragma solidity ^0.8.1;
// SPDX-License-Identifier: MIT
library StudentLibrary
{ struct StudentRecord
{ string name;
uint studentNumber;
uint totalClassPoints;
} // End StudentRecord structure
function addPoints
( StudentRecord storage _studentRecord,
uint _earnedPoints
)
public
{ _studentRecord.totalClassPoints += _earnedPoints;
} // End addPoints function
} // End StudentRecord library
contract MyClass
{ // Uses the newly created StudentLibrary
mapping ( uint => StudentLibrary.StudentRecord ) studentRoster;
function addQuizResults() external
{ // Add points for each student from latest quiz
StudentLibrary.addPoints ( studentRoster[0], 10 );
StudentLibrary.addPoints ( studentRoster[1], 5 );
StudentLibrary.addPoints ( studentRoster[2], 8 );
} // End addQuizResults function
} // End MyClass contract
In the example, the library code is saved iin the same file as contract MyClass. It could be stored in a separte file and then imported iinto the contract MyClass file. If the StudentLibrary file is kept in its own file in the same directory as the contract MyClass file StudentLibrary.sol.
In the folowing exaple, both the import and the using are used:
library StudentLibrary is replaced by an import statement (Line 4)StudentRecord with the operations iin the StudentLibrary (Line 7)StudentLibrary defined function (Lines 11-13)
This form of defining and usinig a library facilitates the reuse of the library by multiple Smart Contracts, helps with the maintenance by only having the code defined once, and helps with creating Object-Oriented (OO) architectures and designs.
pragma solidity ^0.8.1;
// SPDX-License-Identifier: MIT
import StudentLibrary from "./StudentLibrary.sol";
contract MyClass
{ using StudentLibrary for StudentLibrary.StudentRecord;
mapping ( uint => StudentLibrary.StudentRecord ) studentRoster;
function addQuizResults() external
{ // Add points for each student from latest quiz
studentRoster[0].addPoints ( 10);
studentRoster[1].addPoints ( 5);
studentRoster[2].addPoints ( 8);
} // End addQuizResults function
} // End MyClass contract