playMaker

Author Topic: [SOLVED] Bool Operator  (Read 2889 times)

Splankton

  • Sr. Member
  • ****
  • Posts: 268
[SOLVED] Bool Operator
« on: March 15, 2014, 04:44:55 PM »
Hi,
Can someone explain what the NAND and XOR mean?
thanks
« Last Edit: March 17, 2014, 07:36:40 AM by Lane »

Lane

  • Administrator
  • Hero Member
  • *****
  • Posts: 2511
  • Mender of the past
    • Cleverous
Re: Bool Operator
« Reply #1 on: March 15, 2014, 06:56:44 PM »
AND = Are both operands True?
NAND = Are either of the operands False?
OR = Are either of the operands True?
XOR = Are the operands non-equal?
Products by Cleverous
|| Vault Core : Database
|| Vault Inventory : Multiplayer Inventory
|| Vault Attributes : Character Stats
|| That Hurt! : Dmg Floaties
|| Quinn : 3D

Splankton

  • Sr. Member
  • ****
  • Posts: 268
Re: Bool Operator
« Reply #2 on: March 16, 2014, 06:08:43 AM »
Thanks!